Skip to content

Commit ab01071

Browse files
[pre-commit.ci lite] apply automatic fixes
1 parent 147ad0a commit ab01071

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contentcuration/contentcuration/frontend/administration/pages/Users/UserPrivilegeModal.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
computed: {
9696
...mapState({
9797
// eslint-disable-next-line kolibri/vue-no-unused-vuex-properties, vue/no-unused-properties
98-
currentEmail: (state) => state.session.currentUser.email,
98+
currentEmail: state => state.session.currentUser.email,
9999
}),
100100
dialog: {
101101
get() {
@@ -138,7 +138,7 @@
138138
try {
139139
const res = this.confirmAction(formData);
140140
if (res && typeof res.then === 'function') {
141-
return res.then((val) => {
141+
return res.then(val => {
142142
this.dialog = false;
143143
return val;
144144
});

0 commit comments

Comments
 (0)