fix: simplify data fetching logic in VnCard.vue #1656
No reviewers
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: verdnatura/salix-front#1656
Loading…
Reference in New Issue
No description provided.
Delete Branch "fix_vnCard_url"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -63,4 +59,2 @@
async function fetch(id, append = false) {
const regex = /\/(\d+)/;
if (props.idInWhere) arrayData.store.filter.where = { id };
else if (!regex.test(props.url)) arrayData.store.url = `${props.url}/${id}`;
Lo que estaba pasando, es que al hacer esto, no se cambiaba la url del arrayData (global) sino de la variable del modulo.
Entonces en un basicData, al guardar, cuando hace el reload, no ponia bien la url. Pq la url original era sin id.
refactor: simplify data fetching logic in VnCard.vueto fix: simplify data fetching logic in VnCard.vue