forked from shadowfacts/Tusker
Rename Delete Status -> Delete Post
This commit is contained in:
parent
bf739b9f41
commit
5123cf20c3
|
@ -294,9 +294,9 @@ extension MenuActionProvider {
|
|||
}))
|
||||
}
|
||||
|
||||
actionsSection.append(UIMenu(title: "Delete Status", image: UIImage(systemName: "trash"), children: [
|
||||
actionsSection.append(UIMenu(title: "Delete Post", image: UIImage(systemName: "trash"), children: [
|
||||
UIAction(title: "Cancel", handler: { _ in }),
|
||||
UIAction(title: "Delete Status", image: UIImage(systemName: "trash"), attributes: .destructive, handler: { [weak self] _ in
|
||||
UIAction(title: "Delete Post", image: UIImage(systemName: "trash"), attributes: .destructive, handler: { [weak self] _ in
|
||||
guard let self,
|
||||
let navigationDelegate = self.navigationDelegate else {
|
||||
return
|
||||
|
|
Loading…
Reference in New Issue