waibu-db 1.1.15 → 1.1.16
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/bajo/intl/en-US.json +1 -0
- package/bajo/intl/id.json +1 -0
- package/package.json +1 -1
- package/plugin/config.json +2 -1
- package/plugin/method/admin-menu.js +1 -2
package/bajo/intl/en-US.json
CHANGED
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"addMoreAfterSubmit": "Add more after submit",
|
|
29
29
|
"clonePrevious": "Clone previous",
|
|
30
30
|
"actionPermanentlyDisabled%s": "Sorry, action '%s' is permanently disabled at database level. For more information, please contact your Admin immediately, thank you!",
|
|
31
|
+
"dbModels": "Database Models",
|
|
31
32
|
"op": {
|
|
32
33
|
"equals": "Equals",
|
|
33
34
|
"notEquals": "Not Equals",
|
package/bajo/intl/id.json
CHANGED
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"addMoreAfterSubmit": "Tambah lagi setelah kirim",
|
|
29
29
|
"clonePrevious": "Duplikasi sebelumnya",
|
|
30
30
|
"actionPermanentlyDisabled%s": "Sorry, action '%s' is permanently disabled at database level. For more information, please contact your Admin immediately, thank you!",
|
|
31
|
+
"dbModels": "Model Database",
|
|
31
32
|
"op": {
|
|
32
33
|
"equals": "Sama Dengan",
|
|
33
34
|
"notEquals": "Tidak Sama Dengan",
|
package/package.json
CHANGED
package/plugin/config.json
CHANGED
|
@@ -39,8 +39,7 @@ function modelsMenu (locals, req) {
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
async function adminMenu (locals, req) {
|
|
42
|
-
|
|
43
|
-
return buildAccordionMenu(modelsMenu.call(this, locals, req), locals, req)
|
|
42
|
+
return modelsMenu.call(this, locals, req)
|
|
44
43
|
}
|
|
45
44
|
|
|
46
45
|
export default adminMenu
|