fix: cardDescriptor
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
This commit is contained in:
parent
3a117a9f0e
commit
2e02027a00
|
@ -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
|
||||
|
|
|
@ -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'));
|
||||
|
||||
|
|
Loading…
Reference in New Issue