mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-23 11:35:04 +01:00
Move Room details menu entry to top
Signed-off-by: RMidhunSuresh <rmidhunsuresh@gmail.com>
This commit is contained in:
parent
9074caf443
commit
986f04aac0
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user