Skip to content

Commit

Permalink
[FIX] user status Offline misnamed as Invisible in Custom Status edit…
Browse files Browse the repository at this point in the history
… dropdown menu (#24796)

* Invisible to Offline

* accomodate #25265  (Convert to tsx)+

* Rename UserStatusMenu.js to UserStatusMenu.tsx

* Use correct file path

Co-authored-by: Debdut Chakraborty <debdut.chakraborty@rocket.chat>
Co-authored-by: dougfabris <devfabris@gmail.com>
  • Loading branch information
3 people authored Jun 5, 2022
1 parent d2c6ed9 commit 881e762
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/meteor/client/components/UserStatusMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const UserStatusMenu = ({
];

if (allowInvisibleStatus) {
statuses.push([UserStatusType.OFFLINE, renderOption(UserStatusType.OFFLINE, t('Invisible'))]);
statuses.push([UserStatusType.OFFLINE, renderOption(UserStatusType.OFFLINE, t('Offline'))]);
}

return statuses;
Expand Down

0 comments on commit 881e762

Please sign in to comment.