You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-28 15:22:05 +03:00
Ooops, restore a bit of RoomCreateDialog content I have accidentally
removed while trying to solve merge conflicts (thx @dbkr)
This commit is contained in:
@ -55,6 +55,19 @@ export default React.createClass({
|
|||||||
<div>
|
<div>
|
||||||
<input id="textinput" ref="textinput" className="mx_CreateRoomDialog_input" autoFocus={true} size="64" />
|
<input id="textinput" ref="textinput" className="mx_CreateRoomDialog_input" autoFocus={true} size="64" />
|
||||||
</div>
|
</div>
|
||||||
|
<br />
|
||||||
|
|
||||||
|
<details className="mx_CreateRoomDialog_details">
|
||||||
|
<summary className="mx_CreateRoomDialog_details_summary">{ _t('Advanced options') }</summary>
|
||||||
|
<div>
|
||||||
|
<input type="checkbox" id="checkbox" ref="checkbox" defaultChecked={this.defaultNoFederate} />
|
||||||
|
<label htmlFor="checkbox">
|
||||||
|
{ _t('Block users on other matrix homeservers from joining this room') }
|
||||||
|
<br />
|
||||||
|
({ _t('This setting cannot be changed later!') })
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
</details>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
<DialogButtons primaryButton={_t('Create Room')}
|
<DialogButtons primaryButton={_t('Create Room')}
|
||||||
|
Reference in New Issue
Block a user