Fix cancel bug
Этот коммит содержится в:
@@ -216,7 +216,9 @@ class UserSettingsModal extends React.Component {
|
|||||||
} else {
|
} else {
|
||||||
if (this.state.active_section === 'theme' && section !== 'theme') {
|
if (this.state.active_section === 'theme' && section !== 'theme') {
|
||||||
const user = UserStore.getCurrentUser();
|
const user = UserStore.getCurrentUser();
|
||||||
Utils.applyTheme(user.theme_props);
|
if (user.theme_props != null) {
|
||||||
|
Utils.applyTheme(user.theme_props);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
this.setState({active_section: section});
|
this.setState({active_section: section});
|
||||||
}
|
}
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user