We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06a1e26 commit 9a6ac54Copy full SHA for 9a6ac54
client/components/swimlanes/swimlanes.js
@@ -5,8 +5,6 @@ function currentCardIsInThisList(listId, swimlaneId) {
5
const currentUser = Meteor.user();
6
if (currentUser && currentUser.profile.boardView === 'board-view-swimlanes')
7
return currentCard && currentCard.listId === listId && currentCard.swimlaneId === swimlaneId;
8
- else if (currentUser.profile.boardView === 'board-view-cal')
9
- return currentCard;
10
else // Default view: board-view-lists
11
return currentCard && currentCard.listId === listId;
12
// https://github.com/wekan/wekan/issues/1623
0 commit comments