summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vuex_shared/bindings.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/vuex_shared/bindings.js')
-rw-r--r--app/assets/javascripts/vuex_shared/bindings.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/assets/javascripts/vuex_shared/bindings.js b/app/assets/javascripts/vuex_shared/bindings.js
index 817a90f8149..edc31cfa69e 100644
--- a/app/assets/javascripts/vuex_shared/bindings.js
+++ b/app/assets/javascripts/vuex_shared/bindings.js
@@ -9,6 +9,7 @@
* @param {string} root - the key of the state where to search fo they keys described in list
* @returns {Object} a dictionary with all the computed properties generated
*/
+// eslint-disable-next-line import/prefer-default-export
export const mapComputed = (list, defaultUpdateFn, root) => {
const result = {};
list.forEach(item => {
@@ -32,5 +33,3 @@ export const mapComputed = (list, defaultUpdateFn, root) => {
});
return result;
};
-
-export default () => {};