fix: cardDescriptor
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Alex Moreno 2024-07-05 14:11:50 +02:00
parent 3a117a9f0e
commit 2e02027a00
2 changed files with 3 additions and 3 deletions

View File

@ -58,8 +58,8 @@ onBeforeMount(async () => {
store = arrayData.store;
entity = computed(() => {
const data = Array.isArray(store.data) ? store.data[0] : store.data;
emit('onFetch', data);
return data;
if (data) emit('onFetch', data ?? {});
return data ?? {};
});
// It enables to load data only once if the module is the same as the dataKey

View File

@ -73,7 +73,7 @@ onMounted(async () => {
const data = ref(useCardDescription());
const setData = (entity) =>
(data.value = useCardDescription(entity.supplier.nickname, entity.id));
(data.value = useCardDescription(entity.supplier?.nickname, entity.id));
const currentEntry = computed(() => state.get('entry'));