mirror of https://github.com/dapr/docs.git
Pubsub component reference: add aria-label to emojis (#3130)
Small a11y fix (just like #3031) Signed-off-by: ItalyPaleAle <43508+ItalyPaleAle@users.noreply.github.com>
This commit is contained in:
parent
3b843047ef
commit
f2a0f9eca0
|
@ -20,8 +20,20 @@
|
|||
<tr>
|
||||
<td><a href="/reference/components-reference/supported-pubsub/{{ .link }}/">{{ .component }}</a>
|
||||
</td>
|
||||
<td align="center">{{ if .features.bulkPublish }}✅{{else}}<img src="/images/emptybox.png">{{ end }}</td>
|
||||
<td align="center">{{ if .features.bulkSubscribe }}✅{{else}}<img src="/images/emptybox.png">{{ end }}</td>
|
||||
<td align="center">
|
||||
{{ if .features.bulkPublish }}
|
||||
<span role="img" aria-label="Bulk publish supported">✅</span>
|
||||
{{else}}
|
||||
<img src="/images/emptybox.png" alt="Bulk publish not supported" aria-label="Bulk publish not supported">
|
||||
{{ end }}
|
||||
</td>
|
||||
<td align="center">
|
||||
{{ if .features.bulkSubscribe }}
|
||||
<span role="img" aria-label="Bulk subscribe supported">✅</span>
|
||||
{{else}}
|
||||
<img src="/images/emptybox.png" alt="Bulk subscribe not supported" aria-label="Bulk subscribe not supported">
|
||||
{{ end }}
|
||||
</td>
|
||||
<td>{{ .state }}</td>
|
||||
<td>{{ .version }}</td>
|
||||
<td>{{ .since }}</td>
|
||||
|
|
Loading…
Reference in New Issue