From 5e624b70e818377dcee33cf95dc45fca555d3a8d Mon Sep 17 00:00:00 2001 From: ArneBo Date: Sat, 3 May 2025 14:38:32 +0200 Subject: [PATCH] feat(front): close album modal after successful album creation --- front/src/components/channels/AlbumModal.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/front/src/components/channels/AlbumModal.vue b/front/src/components/channels/AlbumModal.vue index 3c45136b9..fa683d331 100644 --- a/front/src/components/channels/AlbumModal.vue +++ b/front/src/components/channels/AlbumModal.vue @@ -44,6 +44,7 @@ const submit = async () => { } finally { isLoading.value = false emit('created') + isOpen.value = false } }