From 3edf91ae66914eb4e6ada17a13e8e0ef74928e68 Mon Sep 17 00:00:00 2001 From: Kulbhushan Kaushik Date: Wed, 14 Sep 2022 11:44:44 -0400 Subject: [PATCH] commit --- src/router/router-constants/routing-table.js | 2 +- src/store/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 = {