Departify RoomSettings
Signed-off-by: Stefan Parviainen <pafcu@iki.fi>
This commit is contained in:
parent
3b91ada4c8
commit
a84b42bf24
1 changed files with 3 additions and 3 deletions
|
@ -868,21 +868,21 @@ module.exports = React.createClass({
|
||||||
disabled={!roomState.mayClientSendStateEvent("m.room.history_visibility", cli)}
|
disabled={!roomState.mayClientSendStateEvent("m.room.history_visibility", cli)}
|
||||||
checked={historyVisibility === "shared"}
|
checked={historyVisibility === "shared"}
|
||||||
onChange={this._onHistoryRadioToggle} />
|
onChange={this._onHistoryRadioToggle} />
|
||||||
{ _t('Members only') } ({ _t('since the point in time of selecting this option') })
|
{ _t('Members only since the point in time of selecting this option') })
|
||||||
</label>
|
</label>
|
||||||
<label>
|
<label>
|
||||||
<input type="radio" name="historyVis" value="invited"
|
<input type="radio" name="historyVis" value="invited"
|
||||||
disabled={!roomState.mayClientSendStateEvent("m.room.history_visibility", cli)}
|
disabled={!roomState.mayClientSendStateEvent("m.room.history_visibility", cli)}
|
||||||
checked={historyVisibility === "invited"}
|
checked={historyVisibility === "invited"}
|
||||||
onChange={this._onHistoryRadioToggle} />
|
onChange={this._onHistoryRadioToggle} />
|
||||||
{ _t('Members only') } ({ _t('since they were invited') })
|
{ _t('Members only since they were invited') })
|
||||||
</label>
|
</label>
|
||||||
<label >
|
<label >
|
||||||
<input type="radio" name="historyVis" value="joined"
|
<input type="radio" name="historyVis" value="joined"
|
||||||
disabled={!roomState.mayClientSendStateEvent("m.room.history_visibility", cli)}
|
disabled={!roomState.mayClientSendStateEvent("m.room.history_visibility", cli)}
|
||||||
checked={historyVisibility === "joined"}
|
checked={historyVisibility === "joined"}
|
||||||
onChange={this._onHistoryRadioToggle} />
|
onChange={this._onHistoryRadioToggle} />
|
||||||
{ _t('Members only') } ({ _t('since they joined') })
|
{ _t('Members only since they joined') })
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue