fix: refs #8113 use id as key
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Jorge Penadés 2024-11-25 14:39:33 +01:00
parent e1dd81bc0f
commit dd6604feff
1 changed files with 1 additions and 1 deletions

View File

@ -294,7 +294,7 @@ export function useArrayData(key = useRoute().meta.moduleName, userOptions) {
function mapData(data) {
data.forEach((row) => {
const key = row.clientFk;
const key = row.id;
const val = { ...row, key };
if (store.map.has(key)) {