ActionModal 레이아웃 및 Props 이름 관련 리팩토링

This commit is contained in:
static
2025-01-24 21:58:51 +09:00
parent fea9cd729c
commit 38a1c8d7e0
6 changed files with 18 additions and 16 deletions

View File

@@ -170,7 +170,7 @@
bind:isOpen={isDirectoryEntryRenameModalOpen}
onbeforeclose={() => (selectedEntry = undefined)}
originalName={selectedEntry?.name}
onrename={async (newName: string) => {
onRenameClick={async (newName: string) => {
if (await requestDirectoryEntryRename(selectedEntry!, newName)) {
info = getDirectoryInfo(data.id, $masterKeyStore?.get(1)?.key!); // TODO: FIXME
return true;