diff --git a/src/lib/components/chat/Settings/Account.svelte b/src/lib/components/chat/Settings/Account.svelte index 94c03a79aa..e0dc1407f2 100644 --- a/src/lib/components/chat/Settings/Account.svelte +++ b/src/lib/components/chat/Settings/Account.svelte @@ -150,6 +150,7 @@ class="w-full text-sm dark:text-gray-300 bg-transparent outline-hidden" type="text" bind:value={name} + aria-label={$i18n.t('Name')} required placeholder={$i18n.t('Enter your name')} /> @@ -164,6 +165,7 @@ className="w-full text-sm dark:text-gray-300 bg-transparent outline-hidden" minSize={60} bind:value={bio} + ariaLabel={$i18n.t('Bio')} placeholder={$i18n.t('Share your background and interests')} /> @@ -176,6 +178,7 @@ @@ -232,6 +237,7 @@ class="w-full text-sm outline-hidden" type="url" placeholder={$i18n.t('Enter your webhook URL')} + aria-label={$i18n.t('Notification Webhook')} bind:value={webhookUrl} required /> @@ -273,6 +279,7 @@