Skip to content

Commit

Permalink
technical debt
Browse files Browse the repository at this point in the history
  • Loading branch information
e154 committed Mar 8, 2024
1 parent 0123fec commit 691abbb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ const menuCardsClick = (card) => {

const sortCardUp = (card: Card, index: number) => {
activeTab.value.sortCardUp(card, index)
eventBus.emit('updateGrid', activeTab.value.id)
eventBus.emit('updateTab', activeTab.value.id)
}

const sortCardDown = (card: Card, index: number) => {
activeTab.value.sortCardDown(card, index)
eventBus.emit('updateGrid', activeTab.value.id)
eventBus.emit('updateTab', activeTab.value.id)
}

const showMenuWindow = ref(false)
Expand Down

0 comments on commit 691abbb

Please sign in to comment.