add missing alt attributes

This commit is contained in:
Athou
2022-08-26 08:43:24 +02:00
parent 1daf57a4bd
commit 27f80148cb
2 changed files with 6 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ export function TreeSearch(props: TreeSearchProps) {
.sort((f1, f2) => f1.name.localeCompare(f2.name))
.map(f => ({
title: f.name,
icon: <Image withPlaceholder src={f.iconUrl} alt="" width={18} height={18} />,
icon: <Image withPlaceholder src={f.iconUrl} alt="favicon" width={18} height={18} />,
onTrigger: () => dispatch(redirectToFeed(f.id)),
}))