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

use logical OR ( || )

This commit is contained in:
grafixeyehero 2023-10-11 20:00:29 +03:00
parent c61df2eb92
commit 8725edb9e4

View file

@ -107,7 +107,7 @@ export const getFieldsQuery = (
export const getLimitQuery = () => {
return {
limit: userSettings.libraryPageSize(undefined) ?? undefined
limit: userSettings.libraryPageSize(undefined) || undefined
};
};