mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-13 04:51:21 +00:00
Fix copy text action for boost
This commit is contained in:
parent
e0e3ec3625
commit
d7c2e65479
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ struct StatusRowContextMenu: View {
|
|||
}
|
||||
|
||||
Button {
|
||||
UIPasteboard.general.string = viewModel.status.content.asRawText
|
||||
UIPasteboard.general.string = viewModel.status.reblog?.content.asRawText ?? viewModel.status.content.asRawText
|
||||
} label: {
|
||||
Label("status.action.copy-text", systemImage: "doc.on.doc")
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue