mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-10 11:19:30 +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()
|
||||
}
|
||||
} } label: {
|
||||
Label(viewModel.isReblogged ? "status.action.unbookmark" : "status.action.bookmark",
|
||||
Label(viewModel.isBookmarked ? "status.action.unbookmark" : "status.action.bookmark",
|
||||
systemImage: "bookmark")
|
||||
}
|
||||
Button {
|
||||
|
|
Loading…
Reference in a new issue