This commit is contained in:
Rizky 2024-03-24 17:23:32 +07:00
parent 78e2ad65b1
commit abf3fa894b
1 changed files with 4 additions and 2 deletions

View File

@ -34,7 +34,9 @@ export const EdPropInstanceButton: FC<{
if (!Array.isArray(local.value)) {
local.value = [];
}
} catch (e) {}
} catch (e) {
console.error(e);
}
local.render();
}, [val]);
@ -72,7 +74,7 @@ export const EdPropInstanceButton: FC<{
}
});
await treeRebuild(p);
p.render()
p.render();
}, props);
}}
>