Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/settings/src/components/UserList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ import type { IUser } from '../views/user-types.d.ts'
import type { FormData } from './Users/userFormUtils.ts'

import { mdiAccountGroupOutline } from '@mdi/js'
import { showError } from '@nextcloud/dialogs'
import { showError, showWarning } from '@nextcloud/dialogs'
import { translate as t } from '@nextcloud/l10n'
import { computed, reactive, ref, watch } from 'vue'
import { Fragment } from 'vue-frag'
Expand Down Expand Up @@ -328,7 +328,7 @@ async function redirectIfDisabled() {
loadUsers()

if (!settings.value.canChangePassword) {
window.OC.Notification.showTemporary(t('settings', 'Password change is disabled because the master key is disabled'))
showWarning(t('settings', 'Password change is disabled because the master key is disabled'))
}
initForm()
redirectIfDisabled()
Expand Down
Loading