diff options
Diffstat (limited to 'src/components/glyph/glyph.svelte')
| -rw-r--r-- | src/components/glyph/glyph.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/glyph/glyph.svelte b/src/components/glyph/glyph.svelte index e430d42..60f99eb 100644 --- a/src/components/glyph/glyph.svelte +++ b/src/components/glyph/glyph.svelte @@ -5,7 +5,7 @@ export let uuid; </script> -<div class="glyphicon" aria-hidden="true" title={$_('glyph.title')}> +<div class="glyphicon" role="img" aria-label={$_('glyph.title')} title={$_('glyph.title')}> {#each getGlyphHash(uuid) as fragment} <span class={fragment.glyph} style="color: {fragment.color} "> {fragment.glyph} |