mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 05:04:57 +08:00
controlled checkboxes use checked
not value
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
ef178b282c
commit
33a3cfead6
@ -136,8 +136,8 @@ export default class ShareDialog extends React.Component {
|
||||
if (events.length > 0) {
|
||||
checkbox = <div>
|
||||
<input type="checkbox"
|
||||
value={this.state.linkSpecificEvent}
|
||||
id="mx_ShareDialog_checkbox"
|
||||
checked={this.state.linkSpecificEvent}
|
||||
onClick={this.onLinkSpecificEventCheckboxClick} />
|
||||
<label htmlFor="mx_ShareDialog_checkbox">
|
||||
{ _t('Link to most recent message') }
|
||||
@ -160,8 +160,8 @@ export default class ShareDialog extends React.Component {
|
||||
title = _t('Share Room Message');
|
||||
checkbox = <div>
|
||||
<input type="checkbox"
|
||||
value={this.state.linkSpecificEvent}
|
||||
id="mx_ShareDialog_checkbox"
|
||||
checked={this.state.linkSpecificEvent}
|
||||
onClick={this.onLinkSpecificEventCheckboxClick} />
|
||||
<label htmlFor="mx_ShareDialog_checkbox">
|
||||
{ _t('Link to selected message') }
|
||||
|
Loading…
Reference in New Issue
Block a user