diff --git a/fe/src/pages/GroupsPage.vue b/fe/src/pages/GroupsPage.vue index edc157e..fcf54c8 100644 --- a/fe/src/pages/GroupsPage.vue +++ b/fe/src/pages/GroupsPage.vue @@ -31,10 +31,12 @@

{{ group.name }}

- - +
@@ -268,13 +270,16 @@ const selectGroup = (group: Group) => { }; const openCreateListDialog = (group: Group) => { + console.log('Opening create list dialog for group:', group); // Ensure we have the latest groups data fetchGroups().then(() => { + console.log('Setting up modal with group:', group); availableGroupsForModal.value = [{ label: group.name, value: group.id }]; showCreateListModal.value = true; + console.log('Modal should be visible now:', showCreateListModal.value); }); };