Этот коммит содержится в:
JoramWilander
2016-02-08 07:28:04 -05:00
родитель c90e224349
Коммит 39b35b7b39

Просмотреть файл

@@ -216,7 +216,9 @@ class UserSettingsModal extends React.Component {
} else {
if (this.state.active_section === 'theme' && section !== 'theme') {
const user = UserStore.getCurrentUser();
Utils.applyTheme(user.theme_props);
if (user.theme_props != null) {
Utils.applyTheme(user.theme_props);
}
}
this.setState({active_section: section});
}