1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-24 15:49:46 +02:00

chore: Update dependencies

This commit is contained in:
Maksim Eltyshev 2022-11-21 00:54:05 +01:00
parent 14434b81fe
commit fa8afd7b6e
22 changed files with 12561 additions and 15980 deletions

View file

@ -23,9 +23,9 @@ export function* fetchBoardByCurrentPath() {
if (pathsMatch) {
let boardId;
if (pathsMatch.path === Paths.BOARDS) {
if (pathsMatch.pattern.path === Paths.BOARDS) {
boardId = pathsMatch.params.id;
} else if (pathsMatch.path === Paths.CARDS) {
} else if (pathsMatch.pattern.path === Paths.CARDS) {
({
item: card,
item: { boardId },