Skip to content

Commit

Permalink
Merge pull request #1368 from matrix-org/t3chguy/fix_theme
Browse files Browse the repository at this point in the history
fix radio for theme selection
  • Loading branch information
dbkr committed Sep 12, 2017
2 parents 802f53d + 3df379c commit d90aa6e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/structures/UserSettings.js
Expand Up @@ -729,6 +729,7 @@ module.exports = React.createClass({
// to rebind the onChange each time we render
const onChange = (e) => {
if (e.target.checked) {
this._syncedSettings[setting.id] = setting.value;
UserSettingsStore.setSyncedSetting(setting.id, setting.value);
}
dis.dispatch({
Expand All @@ -741,7 +742,7 @@ module.exports = React.createClass({
type="radio"
name={ setting.id }
value={ setting.value }
defaultChecked={ this._syncedSettings[setting.id] === setting.value }
checked={ this._syncedSettings[setting.id] === setting.value }
onChange={ onChange }
/>
<label htmlFor={ setting.id + "_" + setting.value }>
Expand Down

0 comments on commit d90aa6e

Please sign in to comment.