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

@ -18,3 +18,4 @@ export default {
); );
}); });
} }
}

View file

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