mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-02-02 11:12:20 +00:00
Fix bookmark/unbookmark text in context menu (#214)
This commit is contained in:
parent
77c94e940a
commit
2bcdb75f97
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ struct StatusRowContextMenu: View {
|
||||||
await viewModel.bookmark()
|
await viewModel.bookmark()
|
||||||
}
|
}
|
||||||
} } label: {
|
} } label: {
|
||||||
Label(viewModel.isReblogged ? "status.action.unbookmark" : "status.action.bookmark",
|
Label(viewModel.isBookmarked ? "status.action.unbookmark" : "status.action.bookmark",
|
||||||
systemImage: "bookmark")
|
systemImage: "bookmark")
|
||||||
}
|
}
|
||||||
Button {
|
Button {
|
||||||
|
|
Loading…
Reference in a new issue