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

Fix ItemSortBy import path

This commit is contained in:
Bill Thornton 2024-12-31 23:43:44 -05:00
parent 5dbca32784
commit bfe5b7cc39
10 changed files with 10 additions and 10 deletions

View file

@ -3,7 +3,7 @@ import type { VideoType } from '@jellyfin/sdk/lib/generated-client/models/video-
import type { SortOrder } from '@jellyfin/sdk/lib/generated-client/models/sort-order';
import type { SeriesStatus } from '@jellyfin/sdk/lib/generated-client/models/series-status';
import type { ImageType } from '@jellyfin/sdk/lib/generated-client';
import { ItemSortBy } from '@jellyfin/sdk/lib/models/api/item-sort-by';
import { ItemSortBy } from '@jellyfin/sdk/lib/generated-client/models/item-sort-by';
export type ParentId = string | null | undefined;

View file

@ -1,5 +1,5 @@
import { ItemSortBy } from '@jellyfin/sdk/lib/models/api/item-sort-by';
import type { CollectionType } from '@jellyfin/sdk/lib/generated-client/models/collection-type';
import type { ItemSortBy } from '@jellyfin/sdk/lib/generated-client/models/item-sort-by';
import type { ItemDto } from './base/models/item-dto';
import type { TextLineOpts } from 'components/common/textLines/types';

View file

@ -1,5 +1,5 @@
import { BaseItemKind, SortOrder } from '@jellyfin/sdk/lib/generated-client';
import { ItemSortBy } from '@jellyfin/sdk/lib/models/api/item-sort-by';
import { ItemSortBy } from '@jellyfin/sdk/lib/generated-client/models/item-sort-by';
import { CardOptions } from './cardOptions';
import { SectionsView } from './libraryTabContent';