diff options
Diffstat (limited to 'apps/settings/src/components/AdminTwoFactor.vue')
-rw-r--r-- | apps/settings/src/components/AdminTwoFactor.vue | 12 |
1 files changed, 6 insertions, 6 deletions
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) }, |