Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/apps/experimental/components/library/ItemsView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ const ItemsView: FC<ItemsViewProps> = ({
);

const itemsContainerClass = classNames(
'centered padded-left padded-right padded-right-withalphapicker',
'padded-left padded-right padded-right-withalphapicker',
libraryViewSettings.ViewMode === ViewMode.ListView ?
'vertical-list' :
'vertical-wrap'
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<span class="material-icons more_vert" aria-hidden="true"></span>
</button>
</div>
<div is="emby-itemscontainer" class="vertical-wrap itemsContainer centered">
<div is="emby-itemscontainer" class="vertical-wrap itemsContainer">
</div>
<div class="flex align-items-center justify-content-center flex-wrap-wrap padded-top padded-left padded-right padded-bottom focuscontainer-x">
<div class="paging"></div>
Expand Down
2 changes: 1 addition & 1 deletion src/utils/items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export const getDefaultSortBy = (viewType: LibraryTab) => {
export const getDefaultLibraryViewSettings = (viewType: LibraryTab): LibraryViewSettings => {
return {
ShowTitle: true,
ShowYear: false,
ShowYear: true,
ViewMode: viewType === LibraryTab.Songs ? ViewMode.ListView : ViewMode.GridView,
ImageType: viewType === LibraryTab.Networks ? ImageType.Thumb : ImageType.Primary,
CardLayout: false,
Expand Down
Loading