diff options
Diffstat (limited to 'Jel/Views/Library/Item/ItemGenresView.swift')
-rw-r--r-- | Jel/Views/Library/Item/ItemGenresView.swift | 8 |
1 files changed, 3 insertions, 5 deletions
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 ?? [] ) |