Ivan - Fix hindi language, fix installation error response, fix responsive issues with other languages, fix topic delete bug [skip ci]

This commit is contained in:
ivan 2017-04-20 21:50:52 -03:00
parent e440b348d1
commit bd52d7b680
9 changed files with 22 additions and 10 deletions

View File

@ -27,7 +27,7 @@ class AreYouSure extends React.Component {
password: ''
};
static openModal(description, onYes, type) {
static openModal(description, onYes, type = 'default') {
ModalContainer.openModal(
<AreYouSure description={description} onYes={onYes} type={type}/>,
true

View File

@ -72,7 +72,7 @@ class TopicViewer extends React.Component {
renderDeleteButton() {
return (
<span onClick={AreYouSure.openModal.bind(this, i18n('DELETE_TOPIC_DESCRIPTION'), this.onDeleteClick.bind(this))}>
<span onClick={() => AreYouSure.openModal(i18n('DELETE_TOPIC_DESCRIPTION'), this.onDeleteClick.bind(this))}>
<Icon className="topic-viewer__edit-icon" name="trash" />
</span>
);

View File

@ -64,7 +64,9 @@ class InstallStep4UserSystem extends React.Component {
}
}).then(() => this.setState({
loading: false
}, () => history.push('/install/step-5'))));
}, () => history.push('/install/step-5'))).catch(() => this.setState({
loading: false
})));
}
isDisabled() {

View File

@ -10,9 +10,11 @@ import Message from 'core-components/message';
class InstallStep6Completed extends React.Component {
componentDidMount() {
store.dispatch(ConfigActions.init());
setTimeout(() => {
store.dispatch(ConfigActions.checkInstallation());
}, 5000);
}, 3000);
}
render() {

View File

@ -68,7 +68,7 @@ class MainHomePageLoginWidget extends React.Component {
<Widget className="main-home-page__widget login-widget_password" title={i18n('RECOVER_PASSWORD')} ref="recoverWidget">
<Form {...this.getRecoverFormProps()}>
<div className="login-widget__inputs">
<FormField placeholder="email" name="email" className="login-widget__input" validation="EMAIL" required/>
<FormField placeholder={i18n('EMAIL_LOWERCASE')} name="email" className="login-widget__input" validation="EMAIL" required/>
</div>
<div className="login-widget__submit-button">
<SubmitButton type="primary">{i18n('RECOVER_PASSWORD')}</SubmitButton>

View File

@ -3,8 +3,8 @@
.main-layout-header {
background-color: $primary-blue;
border-radius: 4px 4px 0 0;
height: 32px;
width: 100%;
position: relative;
&__user-name {
color: $primary-red;
@ -19,9 +19,16 @@
}
&__languages {
display: inline-block;
float: right;
position: relative;
top: 5px;
left: -6px;
margin: 0 6px;
}
@media screen and (max-width: 500px) {
.main-layout-header__languages {
float: none;
}
}
}

View File

@ -1,5 +1,5 @@
.main-signup-page {
height: 669px;
min-height: 669px;
.signup-widget {
padding: 30px;

View File

@ -2,6 +2,7 @@
.input {
display: block;
max-width: 100%;
&__text {
border: 1px solid $grey;
@ -20,7 +21,7 @@
}
&_auto {
width: 100%;
max-width: 100%;
}
&_small {

View File

@ -47,7 +47,7 @@ export default {
data: turkishLanguage
},
'in': {
name: 'Indian',
name: 'Hindi',
data: indianLanguage
}
};