From eb96698dc2cfb5d7711730f8d8905a0e379a8486 Mon Sep 17 00:00:00 2001 From: "robinwilliam.hundt" <robinwilliam.hundt@stud.uni-goettingen.de> Date: Sun, 17 Dec 2017 09:41:47 +0100 Subject: [PATCH] Fixed linting errors --- frontend/src/store/store.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/store/store.js b/frontend/src/store/store.js index ad844e82..2c3b6264 100644 --- a/frontend/src/store/store.js +++ b/frontend/src/store/store.js @@ -18,7 +18,7 @@ const store = new Vuex.Store({ loggedIn: false, username: '', userRole: '', - error: '', + error: '' }, getters: { gradySpeak: state => { @@ -42,6 +42,7 @@ const store = new Vuex.Store({ }, 'SET_USER_ROLE': function (state, userRole) { state.userRole = userRole + } }, actions: { async getJWTToken (context, credentials) { -- GitLab