diff options
| author | Fuwn <[email protected]> | 2025-07-08 06:46:30 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-07-08 06:46:30 -0700 |
| commit | d1dbb82a9f64b22cf655417290adeb37b096c250 (patch) | |
| tree | eae1b2457ecb3a3d389eca560de89c686af79152 /Sora/Views/Post | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-d1dbb82a9f64b22cf655417290adeb37b096c250.tar.xz sora-testing-d1dbb82a9f64b22cf655417290adeb37b096c250.zip | |
feat: Development commit
Diffstat (limited to 'Sora/Views/Post')
| -rw-r--r-- | Sora/Views/Post/Details/PostDetailsTagsView.swift | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Sora/Views/Post/Details/PostDetailsTagsView.swift b/Sora/Views/Post/Details/PostDetailsTagsView.swift index 4cd8840..bb69792 100644 --- a/Sora/Views/Post/Details/PostDetailsTagsView.swift +++ b/Sora/Views/Post/Details/PostDetailsTagsView.swift @@ -32,7 +32,11 @@ struct PostDetailsTagsView: View { } } - BookmarkMenuButtonView(tags: [tag], provider: settings.preferredBooru) + BookmarkMenuButtonView( + tags: [tag], + provider: settings.preferredBooru, + disableNewCollection: true + ) } } #if os(macOS) @@ -51,4 +55,6 @@ struct PostDetailsTagsView: View { PostDetailsTagsView( isPresented: .constant(true), tags: ["hololive", "absurdres", "nekomimi"] ) + .environmentObject(BooruManager(.danbooru)) + .environmentObject(SettingsManager()) } |