Skip to content

Commit a896c5a

Browse files
authored
fix(web): shared-link autocomplete (#20761)
1 parent c74989d commit a896c5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

web/src/lib/modals/SharedLinkCreateModal.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,19 +165,19 @@
165165
<div class="flex flex-col gap-4 mt-4">
166166
<div>
167167
<Field label={$t('custom_url')} description={$t('shared_link_custom_url_description')}>
168-
<Input bind:value={slug} placeholder="immich-10000" />
168+
<Input bind:value={slug} autocomplete="off" />
169169
</Field>
170170
{#if slug}
171171
<Text size="tiny" color="muted" class="pt-2">/s/{encodeURIComponent(slug)}</Text>
172172
{/if}
173173
</div>
174174

175175
<Field label={$t('password')} description={$t('shared_link_password_description')}>
176-
<PasswordInput bind:value={password} />
176+
<PasswordInput bind:value={password} autocomplete="new-password" />
177177
</Field>
178178

179179
<Field label={$t('description')}>
180-
<Input bind:value={description} />
180+
<Input bind:value={description} autocomplete="off" />
181181
</Field>
182182

183183
<div class="mt-2">

0 commit comments

Comments
 (0)