mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix precision issue in cardBuilder
This commit is contained in:
parent
3ccb4fabb4
commit
481784622a
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ import ServerConnections from '../ServerConnections';
|
|||
return 100 / 14.2857142857;
|
||||
}
|
||||
if (screenWidth >= 1200) {
|
||||
return 100 / 16.666666666666666666;
|
||||
return 100 / 16.66666667;
|
||||
}
|
||||
if (screenWidth >= 1000) {
|
||||
return 5;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue