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

View file

@ -14,6 +14,6 @@ const routingTable = function(store) {
], ],
}, },
]; ];
} };
export { routingTable }; export { routingTable };

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 = {