diff --git a/src/components/ui/CardDescriptor.vue b/src/components/ui/CardDescriptor.vue
index b544f1640..f63b75de6 100644
--- a/src/components/ui/CardDescriptor.vue
+++ b/src/components/ui/CardDescriptor.vue
@@ -1,14 +1,10 @@
+
-
+
- #{{ $props.subtitle ?? arrayData.store.data.id }}
+ #{{ $props.subtitle ?? entity.id }}
-
+
-
+
-
+
-
+
diff --git a/src/composables/useArrayData.js b/src/composables/useArrayData.js
index 982dda978..9aff0eaa8 100644
--- a/src/composables/useArrayData.js
+++ b/src/composables/useArrayData.js
@@ -7,6 +7,7 @@ const arrayDataStore = useArrayDataStore();
export function useArrayData(key, userOptions) {
if (!key) throw new Error('ArrayData: A key is required to use this composable');
+
if (!arrayDataStore.get(key)) {
arrayDataStore.set(key);
}
@@ -39,7 +40,7 @@ export function useArrayData(key, userOptions) {
'userParams',
'userFilter',
];
- if (userOptions && typeof userOptions === 'object') {
+ if (typeof userOptions === 'object') {
for (const option in userOptions) {
const isEmpty = userOptions[option] == null || userOptions[option] == '';
if (isEmpty || !allowedOptions.includes(option)) continue;
@@ -146,7 +147,7 @@ export function useArrayData(key, userOptions) {
if (store.userParams && Object.keys(store.userParams).length !== 0)
query.params = JSON.stringify(store.userParams);
- router?.replace({
+ router.replace({
path: route.path,
query: query,
});
diff --git a/src/i18n/es/index.js b/src/i18n/es/index.js
index 0c38a13ab..daaf93e33 100644
--- a/src/i18n/es/index.js
+++ b/src/i18n/es/index.js
@@ -273,7 +273,7 @@ export default {
photos: 'Fotos',
log: 'Registros de auditoría',
notes: 'Notas',
- action: 'Action',
+ action: 'Acción',
},
list: {
customer: 'Cliente',
diff --git a/src/pages/Claim/Card/ClaimAction.vue b/src/pages/Claim/Card/ClaimAction.vue
index 1c501eece..c31938a18 100644
--- a/src/pages/Claim/Card/ClaimAction.vue
+++ b/src/pages/Claim/Card/ClaimAction.vue
@@ -541,7 +541,7 @@ es:
Delivered: Descripción
Quantity: Cantidad
Claimed: Rec
- Description: Description
+ Description: Descripción
Price: Precio
Discount: Dto.
Destination: Destino
diff --git a/src/pages/Claim/Card/ClaimCard.vue b/src/pages/Claim/Card/ClaimCard.vue
index d29c28970..03b9889f0 100644
--- a/src/pages/Claim/Card/ClaimCard.vue
+++ b/src/pages/Claim/Card/ClaimCard.vue
@@ -1,57 +1,17 @@