diff options
| author | Fuwn <[email protected]> | 2025-09-06 21:39:37 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-09-06 21:39:37 -0700 |
| commit | 759d2c3dc3b0bb159c420d5f7db6edb1a3c87b0f (patch) | |
| tree | 251d8134bf65af00fa27d609cd0f97126187fc67 /Sora | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-759d2c3dc3b0bb159c420d5f7db6edb1a3c87b0f.tar.xz sora-testing-759d2c3dc3b0bb159c420d5f7db6edb1a3c87b0f.zip | |
feat: Development commit
Diffstat (limited to 'Sora')
| -rw-r--r-- | Sora/Views/Post/Grid/PostGridView.swift | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Sora/Views/Post/Grid/PostGridView.swift b/Sora/Views/Post/Grid/PostGridView.swift index 2ffdd5a..1a55079 100644 --- a/Sora/Views/Post/Grid/PostGridView.swift +++ b/Sora/Views/Post/Grid/PostGridView.swift @@ -322,7 +322,7 @@ struct PostGridView: View { // swiftlint:disable:this type_body_length #endif if initialTag == nil { - PlatformSpecificToolbarItem(placement: .navigation) { + PlatformSpecificToolbarItem(placement: .navigationBarLeading) { Menu { ForEach( Array(manager.searchHistory.enumerated().filter { $0.offset < manager.historyIndex }), @@ -345,7 +345,7 @@ struct PostGridView: View { // swiftlint:disable:this type_body_length .id("previousSearchMenu") } - PlatformSpecificToolbarItem(placement: .navigation) { + PlatformSpecificToolbarItem(placement: .navigationBarLeading) { Menu { ForEach( Array(manager.searchHistory.enumerated().filter { $0.offset > manager.historyIndex }), |