mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Remove escapeHTML
Co-authored-by: Bill Thornton <thornbill@users.noreply.github.com>
This commit is contained in:
parent
533ae17767
commit
11d013b07e
7 changed files with 7 additions and 13 deletions
|
@ -2,7 +2,6 @@ import React, { type FC } from 'react';
|
|||
import Box from '@mui/material/Box';
|
||||
import ButtonGroup from '@mui/material/ButtonGroup';
|
||||
import classNames from 'classnames';
|
||||
import escapeHTML from 'escape-html';
|
||||
import { appRouter } from 'components/router/appRouter';
|
||||
import itemHelper from 'components/itemHelper';
|
||||
import { playbackManager } from 'components/playback/playbackmanager';
|
||||
|
@ -42,7 +41,7 @@ const CardHoverMenu: FC<CardHoverMenuProps> = ({
|
|||
>
|
||||
<a
|
||||
href={url}
|
||||
aria-label={escapeHTML(item.Name)}
|
||||
aria-label={item.Name || ''}
|
||||
className='cardImageContainer'
|
||||
></a>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue