File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 2
2
import { goto } from ' $app/navigation' ;
3
3
import AlbumCardGroup from ' $lib/components/album-page/album-card-group.svelte' ;
4
4
import AlbumsTable from ' $lib/components/album-page/albums-table.svelte' ;
5
- import EditAlbumForm from ' $lib/components/forms/edit-album-form.svelte' ;
6
5
import MenuOption from ' $lib/components/shared-components/context-menu/menu-option.svelte' ;
7
6
import RightClickContextMenu from ' $lib/components/shared-components/context-menu/right-click-context-menu.svelte' ;
8
7
import {
11
10
} from ' $lib/components/shared-components/notification/notification' ;
12
11
import { AppRoute } from ' $lib/constants' ;
13
12
import { modalManager } from ' $lib/managers/modal-manager.svelte' ;
13
+ import AlbumEditModal from ' $lib/modals/AlbumEditModal.svelte' ;
14
14
import AlbumShareModal from ' $lib/modals/AlbumShareModal.svelte' ;
15
15
import QrCodeModal from ' $lib/modals/QrCodeModal.svelte' ;
16
16
import SharedLinkCreateModal from ' $lib/modals/SharedLinkCreateModal.svelte' ;
258
258
259
259
const handleEdit = async (album : AlbumResponseDto ) => {
260
260
closeAlbumContextMenu ();
261
- const editedAlbum = await modalManager .show (EditAlbumForm , {
261
+ const editedAlbum = await modalManager .show (AlbumEditModal , {
262
262
album ,
263
263
});
264
264
if (editedAlbum ) {
File renamed without changes.
You can’t perform that action at this time.
0 commit comments