diff --git a/src/components/ADempiere/DataTable/index.vue b/src/components/ADempiere/DataTable/index.vue
index 786669e6..9793504b 100644
--- a/src/components/ADempiere/DataTable/index.vue
+++ b/src/components/ADempiere/DataTable/index.vue
@@ -326,14 +326,14 @@ export default {
computed: {
getterContextMenu() {
const process = this.$store.getters.getContextMenu(this.containerUuid)
- if (process) {
+ if (process && !this.isEmptyValue(process.actions)) {
return process.actions.filter(menu => {
if (menu.type === 'process' || menu.type === 'application') {
return menu
}
})
}
- return false
+ return []
},
getShowContextMenuTable() {
return this.$store.getters.getShowContextMenuTable
diff --git a/src/components/ADempiere/DataTable/menu/index.vue b/src/components/ADempiere/DataTable/menu/index.vue
index ee81498f..f6f7c4fa 100644
--- a/src/components/ADempiere/DataTable/menu/index.vue
+++ b/src/components/ADempiere/DataTable/menu/index.vue
@@ -22,16 +22,17 @@
>
{{ $t('table.dataTable.deleteSelection') }}
-
- {{ process.name }}
-
+
+
+ {{ process.name }}
+
+
diff --git a/src/views/login/forgotPassword.vue b/src/views/login/forgotPassword.vue
index ca0ccf5c..0d7bd99e 100644
--- a/src/views/login/forgotPassword.vue
+++ b/src/views/login/forgotPassword.vue
@@ -40,7 +40,7 @@
{{ $t('login.submit') }}
-
+
{{ $t('login.title') }}
@@ -48,11 +48,11 @@