mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-08-17 00:51:04 +02:00
Fix accounts sorting - Closes #347
This commit is contained in:
4
resources/js/composables/helpers.js
vendored
4
resources/js/composables/helpers.js
vendored
@ -49,4 +49,8 @@ export function useDisplayablePassword(pwd, reveal = false) {
|
||||
}
|
||||
|
||||
return user.preferences.showOtpAsDot && !reveal ? pwd.replace(/[0-9]/g, '●') : pwd
|
||||
}
|
||||
|
||||
export function startsWithUppercase(str) {
|
||||
return str.substr(0, 1).match(/[A-Z\u00C0-\u00DC]/);
|
||||
}
|
Reference in New Issue
Block a user