Skip to content

Commit a0a7653

Browse files
Merge branch 'feat/remove-vuetify-user-privilege-modal' of https://github.com/rishabhjain1712/studio into feat/remove-vuetify-user-privilege-modal
2 parents 41cb016 + ab01071 commit a0a7653

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
@@ -97,7 +97,7 @@
9797
computed: {
9898
...mapState({
9999
// eslint-disable-next-line kolibri/vue-no-unused-vuex-properties, vue/no-unused-properties
100-
currentEmail: (state) => state.session.currentUser.email,
100+
currentEmail: state => state.session.currentUser.email,
101101
}),
102102
dialog: {
103103
get() {
@@ -140,7 +140,7 @@
140140
try {
141141
const res = this.confirmAction(formData);
142142
if (res && typeof res.then === 'function') {
143-
return res.then((val) => {
143+
return res.then(val => {
144144
this.dialog = false;
145145
return val;
146146
});

0 commit comments

Comments
 (0)