This commit is contained in:
Kulbhushan Kaushik 2022-09-14 11:12:41 -04:00
parent bff0bf3963
commit a5e3fb88b9
2 changed files with 3 additions and 2 deletions

View file

@ -17,4 +17,5 @@ export default {
}
);
});
}
}
}

View file

@ -24,7 +24,7 @@ export const getters = {
function getAllValuesOfPropertyInArrayOfObjects(array, propertyName) {
return (array ?? []).map(x => x[propertyName]).filter(x => x);
}
};
// Export Actions
export const actions = {