Browse Source

Merge pull request #16778 from itk-dev/feature/aria-hidden-img

FEAT: hide image from screen readers
Tim Jaeryang Baek 1 month ago
parent
commit
e96d139180
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/lib/components/chat/Messages/ProfileImage.svelte

+ 1 - 0
src/lib/components/chat/Messages/ProfileImage.svelte

@@ -7,6 +7,7 @@
 
 
 <img
 <img
 	crossorigin="anonymous"
 	crossorigin="anonymous"
+	aria-hidden="true"
 	src={src === ''
 	src={src === ''
 		? `${WEBUI_BASE_URL}/static/favicon.png`
 		? `${WEBUI_BASE_URL}/static/favicon.png`
 		: src.startsWith(WEBUI_BASE_URL) ||
 		: src.startsWith(WEBUI_BASE_URL) ||