Move Room details menu entry to top
Signed-off-by: RMidhunSuresh <rmidhunsuresh@gmail.com>
This commit is contained in:
parent
9074caf443
commit
986f04aac0
1 changed files with 1 additions and 1 deletions
|
@ -68,6 +68,7 @@ export class RoomView extends TemplateView {
|
|||
} else {
|
||||
const vm = this.value;
|
||||
const options = [];
|
||||
options.push(Menu.optionWithLink(vm.i18n`Room details`, vm.detailsLink))
|
||||
if (vm.canLeave) {
|
||||
options.push(Menu.optionWithButton(vm.i18n`Leave room`, () => vm.leaveRoom()).setDestructive());
|
||||
}
|
||||
|
@ -77,7 +78,6 @@ export class RoomView extends TemplateView {
|
|||
if (vm.canRejoin) {
|
||||
options.push(Menu.optionWithButton(vm.i18n`Rejoin room`, () => vm.rejoinRoom()));
|
||||
}
|
||||
options.push(Menu.optionWithLink(vm.i18n`Room details`, vm.detailsLink))
|
||||
if (!options.length) {
|
||||
return;
|
||||
}
|
||||
|
|
Reference in a new issue