+
+
+ Salix
+
+
+ {{ t('Home') }}
+
+
-
-
+
+
{{ t('globals.noPinnedModules') }}
-
+
+
+
+en:
+ Home: Home
+es:
+ Home: Inicio
+
diff --git a/src/i18n/en/index.js b/src/i18n/en/index.js
index bd9c64564..faad6005a 100644
--- a/src/i18n/en/index.js
+++ b/src/i18n/en/index.js
@@ -9,6 +9,7 @@ export default {
backToDashboard: 'Return to dashboard',
notifications: 'Notifications',
userPanel: 'User panel',
+ modules: 'Modules',
pinnedModules: 'Pinned modules',
darkMode: 'Dark mode',
logOut: 'Log out',
@@ -32,9 +33,6 @@ export default {
pleaseWait: 'Please wait...',
noPinnedModules: 'You have dont have any pinned modules',
},
- moduleIndex: {
- allModules: 'All modules',
- },
errors: {
statusUnauthorized: 'Access denied',
statusInternalServerError: 'An internal server error has ocurred',
diff --git a/src/i18n/es/index.js b/src/i18n/es/index.js
index ff2955fba..289cfa463 100644
--- a/src/i18n/es/index.js
+++ b/src/i18n/es/index.js
@@ -9,6 +9,7 @@ export default {
backToDashboard: 'Volver al tablón',
notifications: 'Notificaciones',
userPanel: 'Panel de usuario',
+ modules: 'Módulos',
pinnedModules: 'Módulos fijados',
darkMode: 'Modo oscuro',
logOut: 'Cerrar sesión',
@@ -32,9 +33,6 @@ export default {
pleaseWait: 'Por favor, espera...',
noPinnedModules: 'No has fijado ningún módulo',
},
- moduleIndex: {
- allModules: 'Todos los módulos',
- },
errors: {
statusUnauthorized: 'Acceso denegado',
statusInternalServerError: 'Ha ocurrido un error interno del servidor',
diff --git a/src/pages/Customer/CustomerCreate.vue b/src/pages/Customer/CustomerCreate.vue
index 7cf260a73..d87af6cab 100644
--- a/src/pages/Customer/CustomerCreate.vue
+++ b/src/pages/Customer/CustomerCreate.vue
@@ -5,12 +5,7 @@ const customer = reactive({
name: '',
});
-watch(
- () => customer.name,
- () => {
- console.log('customer.name changed');
- }
-);
+watch(() => customer.name);
diff --git a/src/pages/Dashboard/DashboardMain.vue b/src/pages/Dashboard/DashboardMain.vue
index 8db97c448..da6a2cb7d 100644
--- a/src/pages/Dashboard/DashboardMain.vue
+++ b/src/pages/Dashboard/DashboardMain.vue
@@ -90,7 +90,7 @@ const pinnedModules = computed(() => navigation.getPinnedModules());
{
- "en": {
+ "en": {
"pinnedInfo": "Your pinned modules will be shown here..."
},
"es": {