lint
This commit is contained in:
parent
9fbc832de9
commit
7a8da94723
2 changed files with 5 additions and 4 deletions
|
|
@ -225,7 +225,8 @@ const ModerationTools = {
|
||||||
return () => this.disableMFA()
|
return () => this.disableMFA()
|
||||||
}
|
}
|
||||||
case 'statuses': {
|
case 'statuses': {
|
||||||
return () => this.$router.push(`/users/\$${this.users[0].id}/admin_view`)
|
return () =>
|
||||||
|
this.$router.push(`/users/\$${this.users[0].id}/admin_view`)
|
||||||
}
|
}
|
||||||
case 'require_password_change': {
|
case 'require_password_change': {
|
||||||
return () => this.requirePasswordChange()
|
return () => this.requirePasswordChange()
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
import { get } from 'lodash'
|
import { get } from 'lodash'
|
||||||
import { mapState } from 'pinia'
|
import { mapState } from 'pinia'
|
||||||
|
|
||||||
|
import Checkbox from 'src/components/checkbox/checkbox.vue'
|
||||||
import List from 'src/components/list/list.vue'
|
import List from 'src/components/list/list.vue'
|
||||||
import Status from 'src/components/status/status.vue'
|
import Status from 'src/components/status/status.vue'
|
||||||
import Checkbox from 'src/components/checkbox/checkbox.vue'
|
|
||||||
import UserCard from 'src/components/user_card/user_card.vue'
|
import UserCard from 'src/components/user_card/user_card.vue'
|
||||||
|
|
||||||
import { useAdminSettingsStore } from 'src/stores/admin_settings.js'
|
import { useAdminSettingsStore } from 'src/stores/admin_settings.js'
|
||||||
|
|
@ -62,8 +62,8 @@ const UserProfileAdminView = {
|
||||||
watch: {
|
watch: {
|
||||||
godmode() {
|
godmode() {
|
||||||
this.$refs.list.reset()
|
this.$refs.list.reset()
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
export default UserProfileAdminView
|
export default UserProfileAdminView
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue