diff --git a/src/router/router-constants/routing-table.js b/src/router/router-constants/routing-table.js index 51cdb516..5e11bbc6 100644 --- a/src/router/router-constants/routing-table.js +++ b/src/router/router-constants/routing-table.js @@ -14,6 +14,6 @@ const routingTable = function(store) { ], }, ]; -} +}; export { routingTable }; \ No newline at end of file diff --git a/src/store/index.js b/src/store/index.js index 5be78178..02c9ab2e 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -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 = {