This commit is contained in:
Viet An
2026-06-04 13:57:27 +07:00
parent 2981d9790a
commit 2a1f85c2af
44 changed files with 99 additions and 102 deletions

View File

@@ -10,7 +10,7 @@ const body = ref({
async function submit() {
isLoading.value = true;
const newRow = await $insertapi("External_Storage", body.value);
const newRow = await $insertapi("External_Storage", { data: body.value });
emit("modalevent", { name: "dataevent", data: newRow });
isLoading.value = false;
}