fix: not fetch on mounted #1015

Merged
alexm merged 2 commits from hotfix-notRedirectOnLoad into master 2024-11-28 07:34:22 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ const addFilter = async (filter, params) => {
async function fetch(params) {
useArrayData(props.dataKey, params);
arrayData.reset(['filter.skip', 'skip', 'page']);
await arrayData.fetch({ append: false });
Review

J. Gallego me ha dicho que cuando hay solo 1 registro, solo se debería redirigir al summary cuando se realice una búsqueda desde el searchbar o filtro.

J. Gallego me ha dicho que cuando hay solo 1 registro, solo se debería redirigir al summary cuando se realice una búsqueda desde el searchbar o filtro.
await arrayData.fetch({ append: false, updateRouter: mounted.value });
return emitStoreData();
}