diff options
| author | Fuwn <[email protected]> | 2025-03-01 00:35:26 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-03-01 00:35:32 -0800 |
| commit | 83113da4692cc60e394f9c7af89882e7ec5ca877 (patch) | |
| tree | 8382220281eaedf9f6f2c817ee1f8e77f523f383 /Sora/Views/Post/Grid/PostGridView.swift | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-83113da4692cc60e394f9c7af89882e7ec5ca877.tar.xz sora-testing-83113da4692cc60e394f9c7af89882e7ec5ca877.zip | |
feat: Development commit
Diffstat (limited to 'Sora/Views/Post/Grid/PostGridView.swift')
| -rw-r--r-- | Sora/Views/Post/Grid/PostGridView.swift | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Sora/Views/Post/Grid/PostGridView.swift b/Sora/Views/Post/Grid/PostGridView.swift index a3b5f31..20d6b3a 100644 --- a/Sora/Views/Post/Grid/PostGridView.swift +++ b/Sora/Views/Post/Grid/PostGridView.swift @@ -11,7 +11,8 @@ struct PostGridView: View { private var isSearching var filteredPosts: [BooruPost] { - manager.posts.filter { settings.displayRatings.contains($0.rating) } + manager.posts + .filter { settings.displayRatings.contains($0.rating) } .sorted { $0.id > $1.id } } |