#21 - Kanban : on click on comments count, open dialog with comments panel open

This commit is contained in:
isUnknown 2024-11-22 17:31:34 +01:00
parent 955b8531a1
commit bcae5587ae
2 changed files with 17 additions and 4 deletions

View file

@ -78,7 +78,7 @@ const isOpen = ref(true);
watch(isOpen, (newValue) => {
router.push({ name: route.name });
});
const isCommentsOpen = ref(false);
const isCommentsOpen = ref(route.query.comments ? true : false);
const currentPageIndex = ref(1);
watch(isCommentsOpen, (newVal) => {