1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix focus indication on tags

`emby-button` class is used as a flag for `EmbyButton.createdCallback`.
This commit is contained in:
Dmitry Lyzo 2024-09-09 22:01:31 +03:00 committed by Dmitry Lyzo
parent 9184f06d79
commit 61c58d8cb0

View file

@ -1318,7 +1318,7 @@ function renderTags(page, item) {
serverId: item.ServerId serverId: item.ServerId
}); });
tagElements.push( tagElements.push(
`<a href="${href}" class="button-link emby-button" is="emby-linkbutton">` `<a href="${href}" class="button-link" is="emby-linkbutton">`
+ escapeHtml(tag) + escapeHtml(tag)
+ '</a>' + '</a>'
); );