Browse Source

add aria label to delete button

Sine Jespersen 4 months ago
parent
commit
a710ea1f07
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/lib/components/AddConnectionModal.svelte

+ 3 - 0
src/lib/components/AddConnectionModal.svelte

@@ -433,6 +433,9 @@
 											</div>
 											<div class="shrink-0">
 												<button
+													aria-label={$i18n.t(`Remove {{MODELID}} from list.`, {
+														MODELID: modelId
+													})}
 													type="button"
 													on:click={() => {
 														modelIds = modelIds.filter((_, idx) => idx !== modelIdx);