diff options
author | 2024-07-08 09:38:27 +0200 | |
---|---|---|
committer | 2024-07-08 09:38:27 +0200 | |
commit | bbbf6ebe376c7b6c3a64e14571a3a477b880e3ad (patch) | |
tree | d24aa92f743de5c440ce786d61cc86f72bf9a3e7 /web/source/settings/views/user/migration.tsx | |
parent | [chore]: Bump github.com/microcosm-cc/bluemonday from 1.0.26 to 1.0.27 (#3081) (diff) | |
download | gotosocial-bbbf6ebe376c7b6c3a64e14571a3a477b880e3ad.tar.xz |
[frontend] Better autocapitalize/spellcheck settings on forms (#3077)
Diffstat (limited to 'web/source/settings/views/user/migration.tsx')
-rw-r--r-- | web/source/settings/views/user/migration.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/web/source/settings/views/user/migration.tsx b/web/source/settings/views/user/migration.tsx index 69aae6059..5c964d457 100644 --- a/web/source/settings/views/user/migration.tsx +++ b/web/source/settings/views/user/migration.tsx @@ -135,6 +135,8 @@ function AlsoKnownAsURI({ index, data }) { label={`Alias #${index+1}`} field={form.alsoKnownAsURI} placeholder={`https://example.org/users/my_other_account_${index+1}`} + type="url" + pattern="(http|https):\/\/.+" /> ); } @@ -190,10 +192,13 @@ function MoveForm({ data: profile }) { field={form.movedToURI} label="Move target URI" placeholder="https://example.org/users/my_new_account" + type="url" + pattern="(http|https):\/\/.+" /> <TextInput disabled={false} type="password" + autoComplete="current-password" name="password" field={form.password} label="Current account password" |