controlled checkboxes use checked not value

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2018-06-14 13:47:33 +01:00
parent ef178b282c
commit 33a3cfead6
No known key found for this signature in database
GPG key ID: 3F879DA5AD802A5E

View file

@ -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') }