atom-nuxt 1.0.134 → 1.0.136
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.json
CHANGED
|
@@ -302,9 +302,12 @@ const saveAction = async () => {
|
|
|
302
302
|
await deleteItem(itemToSave.id);
|
|
303
303
|
}
|
|
304
304
|
if (formErrors.value == null || Object.keys(formErrors.value).length === 0) {
|
|
305
|
-
|
|
305
|
+
const savedPath = props.path;
|
|
306
|
+
const savedAction = action.value;
|
|
307
|
+
const savedItem = item.value;
|
|
306
308
|
dialogOpen.value = false;
|
|
307
309
|
await getItems(parseInt(page.value) ?? null, null, filterValues.value);
|
|
310
|
+
notify(savedPath + ":" + savedAction, savedItem);
|
|
308
311
|
}
|
|
309
312
|
}
|
|
310
313
|
|