From 3a31397ac29f71db5313ea0e819a1362a019b5cc Mon Sep 17 00:00:00 2001 From: "John Molakvoæ (skjnldsv)" Date: Fri, 31 Jul 2020 09:40:53 +0200 Subject: Use `babel-loader-exclude-node-modules-except` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ (skjnldsv) --- apps/settings/src/components/AdminTwoFactor.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'apps/settings/src/components/AdminTwoFactor.vue') diff --git a/apps/settings/src/components/AdminTwoFactor.vue b/apps/settings/src/components/AdminTwoFactor.vue index 4d34f8ab937..e05884d22f1 100644 --- a/apps/settings/src/components/AdminTwoFactor.vue +++ b/apps/settings/src/components/AdminTwoFactor.vue @@ -86,28 +86,28 @@ export default { }, computed: { enforced: { - get: function() { + get() { return this.$store.state.enforced }, - set: function(val) { + set(val) { this.dirty = true this.$store.commit('setEnforced', val) }, }, enforcedGroups: { - get: function() { + get() { return this.$store.state.enforcedGroups }, - set: function(val) { + set(val) { this.dirty = true this.$store.commit('setEnforcedGroups', val) }, }, excludedGroups: { - get: function() { + get() { return this.$store.state.excludedGroups }, - set: function(val) { + set(val) { this.dirty = true this.$store.commit('setExcludedGroups', val) }, -- cgit v1.2.3