Skip to content

Commit a214b5d

Browse files
committed
2607
Signed-off-by: Jakob Röhrl <jakob.roehrl@web.de>
1 parent 7d88535 commit a214b5d

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

src/components/Controls.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
</Actions>
6666

6767
<template>
68-
<div class="filter" v-if="filterVisible">
68+
<div v-if="filterVisible" class="filter">
6969
<h3>{{ t('deck', 'Filter by tag') }}</h3>
7070
<div v-for="label in labelsSorted" :key="label.id" class="filter--item">
7171
<input

src/components/cards/CardMenu.vue

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ export default {
107107
computed: {
108108
...mapGetters([
109109
'isArchived',
110+
'boards',
110111
]),
111112
...mapState({
112113
showArchived: state => state.showArchived,
@@ -125,11 +126,6 @@ export default {
125126
}
126127
return true
127128
},
128-
boards() {
129-
return this.$store.getters.boards.filter(board => {
130-
return board.id !== this.currentBoard.id
131-
})
132-
},
133129
isCurrentUserAssigned() {
134130
return this.card.assignedUsers.find((item) => item.type === 0 && item.participant.uid === getCurrentUser()?.uid)
135131
},

0 commit comments

Comments
 (0)