commit
This commit is contained in:
parent
a5e3fb88b9
commit
3edf91ae66
2 changed files with 2 additions and 2 deletions
|
|
@ -14,6 +14,6 @@ const routingTable = function(store) {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
};
|
||||||
|
|
||||||
export { routingTable };
|
export { routingTable };
|
||||||
|
|
@ -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 = {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue