diff options
| author | Mohamed Bassem <me@mbassem.com> | 2025-07-19 12:29:53 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2025-07-19 12:29:53 +0000 |
| commit | b992fadd44c2be07efa6b1f85c9ec0be18b788fb (patch) | |
| tree | 8799598e3fcfe7689996d3ad392ff9c8a0eb3e4f /apps/web/components | |
| parent | 49f38efdbe3718055d2c84847d7dab92ae359be9 (diff) | |
| download | karakeep-b992fadd44c2be07efa6b1f85c9ec0be18b788fb.tar.zst | |
fix: Fix edit list modal not clearing parent
Diffstat (limited to 'apps/web/components')
| -rw-r--r-- | apps/web/components/dashboard/lists/EditListModal.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/components/dashboard/lists/EditListModal.tsx b/apps/web/components/dashboard/lists/EditListModal.tsx index e1dd49f4..5febf88c 100644 --- a/apps/web/components/dashboard/lists/EditListModal.tsx +++ b/apps/web/components/dashboard/lists/EditListModal.tsx @@ -306,7 +306,7 @@ export function EditListModal({ type="button" variant="ghost" onClick={() => { - form.resetField("parentId"); + form.setValue("parentId", ""); }} > <X /> |
