Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaylorhq committed Oct 9, 2023
1 parent 7b03453 commit 54aa1f7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 11 deletions.
5 changes: 2 additions & 3 deletions javascripts/discourse/components/kanban/card.gjs
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,9 @@ export default class KanbanCard extends Component {
</template>

@tracked dragging;
// TODO - FIX THIS ONCE CORE EXPORTS IT PROPERLY
formatDate = getOwner(this).resolveRegistration("helper:format-date");


// TODO - FIX THIS ONCE CORE EXPORTS IT PROPERLY
formatDate = getOwner(this).resolveRegistration("helper:format-date");

@action
dragStart(event) {
Expand Down
12 changes: 4 additions & 8 deletions javascripts/discourse/components/kanban/modal/options.gjs
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,10 @@ export default class KanbanOptionsController extends Component {
@service site;

@tracked tags = [];
@tracked usernames = [];
@tracked categories = [];
@tracked mode = "tags";
modes = [{ id: "tags" }, { id: "categories" }, { id: "assigned" }];




@tracked usernames = [];
@tracked categories = [];
@tracked mode = "tags";
modes = [{ id: "tags" }, { id: "categories" }, { id: "assigned" }];

@equal("mode", "tags") isTags;
@equal("mode", "categories") isCategories;
Expand Down

0 comments on commit 54aa1f7

Please sign in to comment.