mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-12 08:25:47 +01:00
⬆️ Upgrade dependencies
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
import { Image, Group, Title, Badge, Text, ActionIcon, Anchor, ScrollArea } from '@mantine/core';
|
import { Image, Group, Title, Badge, Text, ActionIcon, Anchor, ScrollArea, Tooltip, GroupProps } from '@mantine/core';
|
||||||
import { IconLink as Link } from '@tabler/icons';
|
import { IconLink, IconPlayerPlay } from '@tabler/icons';
|
||||||
import { useConfig } from '../../../tools/state';
|
import { useConfig } from '../../../tools/state';
|
||||||
import { serviceItem } from '../../../tools/types';
|
import { serviceItem } from '../../../tools/types';
|
||||||
|
|
||||||
@@ -41,7 +41,7 @@ export function MediaDisplay(
|
|||||||
<Tooltip label="Open in Plex">
|
<Tooltip label="Open in Plex">
|
||||||
<Anchor href={media.plexUrl} target="_blank">
|
<Anchor href={media.plexUrl} target="_blank">
|
||||||
<ActionIcon>
|
<ActionIcon>
|
||||||
<PlayerPlay />
|
<IconPlayerPlay />
|
||||||
</ActionIcon>
|
</ActionIcon>
|
||||||
</Anchor>
|
</Anchor>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
@@ -49,7 +49,7 @@ export function MediaDisplay(
|
|||||||
{media.imdbId && (
|
{media.imdbId && (
|
||||||
<Anchor href={`https://www.imdb.com/title/${media.imdbId}`} target="_blank">
|
<Anchor href={`https://www.imdb.com/title/${media.imdbId}`} target="_blank">
|
||||||
<ActionIcon>
|
<ActionIcon>
|
||||||
<Link />
|
<IconLink />
|
||||||
</ActionIcon>
|
</ActionIcon>
|
||||||
</Anchor>
|
</Anchor>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Reference in New Issue
Block a user