@motor-cms/ui-admin 4.5.0 → 4.5.2
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.
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"view_title": "Kategoriebaum ansehen",
|
|
10
10
|
"created_success": "Kategoriebaum wurde erfolgreich erstellt",
|
|
11
11
|
"updated_success": "Kategoriebaum wurde erfolgreich aktualisiert",
|
|
12
|
-
"children": "
|
|
12
|
+
"children": "Kategorien",
|
|
13
13
|
"children_title": "Kategorien in \"{name}\"",
|
|
14
14
|
"children_subtitle": "Kategorien in diesem Baum verwalten"
|
|
15
15
|
}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"view_title": "View Category Tree",
|
|
10
10
|
"created_success": "Category tree was created successfully",
|
|
11
11
|
"updated_success": "Category tree was updated successfully",
|
|
12
|
-
"children": "
|
|
12
|
+
"children": "Categories",
|
|
13
13
|
"children_title": "Categories in \"{name}\"",
|
|
14
14
|
"children_subtitle": "Manage categories within this tree"
|
|
15
15
|
}
|
|
@@ -13,7 +13,10 @@ const { fields, schema, groups, state, loading, selectOptions, selectOptionsLoad
|
|
|
13
13
|
formConfig: roleFormConfig,
|
|
14
14
|
mode: 'create',
|
|
15
15
|
selectOptionConfigs: roleSelectOptionConfigs,
|
|
16
|
-
extraState: { guard_name: 'web' }
|
|
16
|
+
extraState: { guard_name: 'web' },
|
|
17
|
+
beforeSubmit: (data, formState) => {
|
|
18
|
+
data.guard_name = formState.guard_name
|
|
19
|
+
}
|
|
17
20
|
})
|
|
18
21
|
</script>
|
|
19
22
|
|