Merge pull request #5040 from Pandetthe/master

Fix get_board_cards_count
This commit is contained in:
Lauri Ojansivu 2023-08-01 15:23:55 +03:00 committed by GitHub
commit e4ae57bf7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3392,7 +3392,7 @@ JsonRoutes.add('GET', '/api/boards/:boardId/cards_count', function(
board_cards_count: ReactiveCache.getCards({
boardId: paramBoardId,
archived: false,
}),
}).length,
}
});
} catch (error) {