|
@@ -1,4 +1,4 @@
|
|
|
-import React, { Fragment } from 'react';
|
|
|
|
|
|
|
+import React from 'react';
|
|
|
import PropTypes from 'prop-types';
|
|
import PropTypes from 'prop-types';
|
|
|
import { withTranslation } from 'react-i18next';
|
|
import { withTranslation } from 'react-i18next';
|
|
|
|
|
|
|
@@ -12,7 +12,7 @@ class SecuritySetting extends React.Component {
|
|
|
render() {
|
|
render() {
|
|
|
const { t, adminSecuritySettingContainer } = this.props;
|
|
const { t, adminSecuritySettingContainer } = this.props;
|
|
|
return (
|
|
return (
|
|
|
- <Fragment>
|
|
|
|
|
|
|
+ <React.Fragment>
|
|
|
<fieldset>
|
|
<fieldset>
|
|
|
<legend className="alert-anchor">{ t('security_settings') }</legend>
|
|
<legend className="alert-anchor">{ t('security_settings') }</legend>
|
|
|
<div className="form-group">
|
|
<div className="form-group">
|
|
@@ -88,7 +88,7 @@ class SecuritySetting extends React.Component {
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
</fieldset>
|
|
</fieldset>
|
|
|
- </Fragment>
|
|
|
|
|
|
|
+ </React.Fragment>
|
|
|
);
|
|
);
|
|
|
}
|
|
}
|
|
|
|
|
|