diff options
| author | Fuwn <[email protected]> | 2025-03-03 19:43:35 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-03-03 19:43:35 -0800 |
| commit | e56c662137ca3e3945aed174c90062601df092f5 (patch) | |
| tree | 8f459760d0bcbe16cbd18f2863bfd063a08ca974 /Sora/Views/Post/Details | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-e56c662137ca3e3945aed174c90062601df092f5.tar.xz sora-testing-e56c662137ca3e3945aed174c90062601df092f5.zip | |
feat: Development commit
Diffstat (limited to 'Sora/Views/Post/Details')
| -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 de25051..e2304a7 100644 --- a/Sora/Views/Post/Details/PostDetailsTagsView.swift +++ b/Sora/Views/Post/Details/PostDetailsTagsView.swift @@ -22,7 +22,13 @@ struct PostDetailsTagsView: View { search() }) { - Label("Add to current search query", systemImage: "plus") + Label("Add to Search", systemImage: "plus") + } + + Button(action: { + settings.addBookmark(provider: settings.preferredBooru, tags: [tag]) + }) { + Label("Bookmark Tag", systemImage: "bookmark") } } } |