diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-03 13:19:00 -0800 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-03-03 13:19:00 -0800 |
commit | 69d677427759e6eb5fd42f6b3afed3086f71031b (patch) | |
tree | a2a160f556ede9d8c290ee995f160adb280ebf3a /src | |
parent | a9920d963041e53be5c454da30f8109c2a145d19 (diff) | |
download | voidsky-69d677427759e6eb5fd42f6b3afed3086f71031b.tar.zst |
Move the translate item to the top of the menu
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/util/forms/DropdownButton.tsx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/view/com/util/forms/DropdownButton.tsx b/src/view/com/util/forms/DropdownButton.tsx index dcabe5455..ac83d1a54 100644 --- a/src/view/com/util/forms/DropdownButton.tsx +++ b/src/view/com/util/forms/DropdownButton.tsx @@ -148,6 +148,13 @@ export function PostDropdownBtn({ } : undefined, { + icon: 'language', + label: 'Translate...', + onPress() { + onOpenTranslate() + }, + }, + { icon: ['far', 'paste'], label: 'Copy post text', onPress() { @@ -162,13 +169,6 @@ export function PostDropdownBtn({ }, }, { - icon: 'language', - label: 'Translate...', - onPress() { - onOpenTranslate() - }, - }, - { icon: 'circle-exclamation', label: 'Report post', onPress() { |