diff options
| author | Shishkevich D. <135337715+shishkevichd@users.noreply.github.com> | 2025-03-08 18:41:27 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-08 18:41:27 +0300 |
| commit | 697cd5e6d9d8cdacb1cf36fb485667e2409eba62 (patch) | |
| tree | f0fb34bc3daeb022e0bd0040128fb6e61fa153cd /web/html/xui/settings.html | |
| parent | c6d27a446355e7278fedd98334a314994bb70153 (diff) | |
Code refactoring (#2739)
* refactor: switching to the use of typed props
* refactor: `password-input` -> `a-password-input`
* fix: qr modal copy error
Diffstat (limited to 'web/html/xui/settings.html')
| -rw-r--r-- | web/html/xui/settings.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/html/xui/settings.html b/web/html/xui/settings.html index e8fa7e11..3bfb32a9 100644 --- a/web/html/xui/settings.html +++ b/web/html/xui/settings.html @@ -271,7 +271,7 @@ <a-setting-list-item paddings="small"> <template #title>{{ i18n "pages.settings.currentPassword"}}</template> <template #control> - <password-input autocomplete="current-password" v-model="user.oldPassword"></password-input> + <a-password-input autocomplete="current-password" v-model="user.oldPassword"></a-password-input> </template> </a-setting-list-item> <a-setting-list-item paddings="small"> @@ -283,7 +283,7 @@ <a-setting-list-item paddings="small"> <template #title>{{ i18n "pages.settings.newPassword"}}</template> <template #control> - <password-input autocomplete="new-password" v-model="user.newPassword"></password-input> + <a-password-input autocomplete="new-password" v-model="user.newPassword"></a-password-input> </template> </a-setting-list-item> <a-list-item> |
