stream fragment

This commit is contained in:
okbel
2018-05-03 11:07:58 -03:00
parent aa6c9890b2
commit a9132c1353
2 changed files with 3 additions and 3 deletions
@@ -372,6 +372,7 @@ const slots = [
'streamTabsPrepend',
'streamTabPanes',
'streamFilter',
'stream',
];
const fragments = {
@@ -115,10 +115,10 @@ class AddEmailAddressDialog extends React.Component {
render() {
const { errors, formData, showErrors, step } = this.state;
const { root: { settings }, showAddEmailDialog } = this.props;
const { root: { settings } } = this.props;
return (
<Dialog className={styles.dialog} open={showAddEmailDialog}>
<Dialog className={styles.dialog} open={true}>
{step === 0 && (
<AddEmailContent
formData={formData}
@@ -148,7 +148,6 @@ AddEmailAddressDialog.propTypes = {
attachLocalAuth: PropTypes.func.isRequired,
notify: PropTypes.func.isRequired,
root: PropTypes.object.isRequired,
showAddEmailDialog: PropTypes.bool.isRequired,
};
export default AddEmailAddressDialog;