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

Remove escapeHTML

This commit is contained in:
grafixeyehero 2024-03-09 03:41:33 +03:00
parent a83301df95
commit e8422e2c29

View file

@ -6,7 +6,6 @@ import {
} from '@jellyfin/sdk/lib/generated-client';
import { Api } from '@jellyfin/sdk';
import { getImageApi } from '@jellyfin/sdk/lib/utils/api/image-api';
import escapeHTML from 'escape-html';
import { appRouter } from 'components/router/appRouter';
import layoutManager from 'components/layoutManager';
@ -78,15 +77,11 @@ export function getTextActionButton(
text?: NullableString,
serverId?: NullableString
): TextLine {
if (!text) {
text = itemHelper.getDisplayName(item);
}
text = escapeHTML(text);
const title = text || itemHelper.getDisplayName(item);
if (layoutManager.tv) {
return {
title: text
title
};
}
@ -108,7 +103,7 @@ export function getTextActionButton(
return {
titleAction: {
url,
title: text,
title,
dataAttributes
}
};