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

Fix console errors

This commit is contained in:
Bill Thornton 2024-07-19 11:30:57 -04:00
parent 112f8627b5
commit 5f61a431de
4 changed files with 43 additions and 8 deletions

View file

@ -46,7 +46,7 @@ const PluginDetailsTable: FC<PluginDetailsTableProps> = ({
</TableCell>
<TableCell>
{
(isPluginLoading || !pluginDetails?.version?.version && <Skeleton />)
(isPluginLoading && <Skeleton />)
|| pluginDetails?.version?.version
}
</TableCell>