From 6edc39791a577a500c92f32361cf1e7d2590ec37 Mon Sep 17 00:00:00 2001 From: Shav Kinderlehrer Date: Tue, 9 Jan 2024 12:32:06 -0500 Subject: Implement ItemPeopleView --- Jel/Views/Library/Item/ItemGenresView.swift | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'Jel/Views/Library/Item/ItemGenresView.swift') diff --git a/Jel/Views/Library/Item/ItemGenresView.swift b/Jel/Views/Library/Item/ItemGenresView.swift index 5bfccb0..4e8321f 100644 --- a/Jel/Views/Library/Item/ItemGenresView.swift +++ b/Jel/Views/Library/Item/ItemGenresView.swift @@ -20,6 +20,7 @@ struct ItemGenresView: View { VStack(alignment: .leading) { Text("Genres") .font(.title2) + .padding(.horizontal) ScrollView(.horizontal) { HStack { @@ -43,18 +44,15 @@ struct ItemGenresView: View { .clipShape(.capsule) } } + .padding(.horizontal) } + .scrollIndicators(.hidden) } .onAppear { Task { let parameters = Paths.GetItemsParameters( userID: authState.userId ?? "", isRecursive: true, - fields: [.primaryImageAspectRatio, - .genres, - .taglines, - .overview, - .parentID], includeItemTypes: [.movie, .series], genres: item.genres ?? [] ) -- cgit v1.2.3