Move copy link to be before settings
This commit is contained in:
parent
a1c658f187
commit
ff80bbc4a5
1 changed files with 5 additions and 5 deletions
|
@ -528,16 +528,16 @@ export default class RoomTile extends React.PureComponent<IProps, IState> {
|
||||||
iconClassName="mx_RoomTile_iconInvite"
|
iconClassName="mx_RoomTile_iconInvite"
|
||||||
/>
|
/>
|
||||||
) : null}
|
) : null}
|
||||||
<IconizedContextMenuOption
|
|
||||||
onClick={this.onOpenRoomSettings}
|
|
||||||
label={_t("Settings")}
|
|
||||||
iconClassName="mx_RoomTile_iconSettings"
|
|
||||||
/>
|
|
||||||
<IconizedContextMenuOption
|
<IconizedContextMenuOption
|
||||||
onClick={this.onCopyRoomClick}
|
onClick={this.onCopyRoomClick}
|
||||||
label={_t("Copy Link")}
|
label={_t("Copy Link")}
|
||||||
iconClassName="mx_RoomTile_iconCopyLink"
|
iconClassName="mx_RoomTile_iconCopyLink"
|
||||||
/>
|
/>
|
||||||
|
<IconizedContextMenuOption
|
||||||
|
onClick={this.onOpenRoomSettings}
|
||||||
|
label={_t("Settings")}
|
||||||
|
iconClassName="mx_RoomTile_iconSettings"
|
||||||
|
/>
|
||||||
</IconizedContextMenuOptionList>
|
</IconizedContextMenuOptionList>
|
||||||
<IconizedContextMenuOptionList red>
|
<IconizedContextMenuOptionList red>
|
||||||
<IconizedContextMenuOption
|
<IconizedContextMenuOption
|
||||||
|
|
Loading…
Reference in a new issue