Appease the linter
This commit is contained in:
parent
d58ab8e6d0
commit
8f6e8c1ec7
3 changed files with 4 additions and 5 deletions
|
@ -245,7 +245,7 @@ export default class AppTile extends React.Component {
|
||||||
Modal.createTrackedDialog('Integrations Manager', '', IntegrationsManager, {
|
Modal.createTrackedDialog('Integrations Manager', '', IntegrationsManager, {
|
||||||
room: this.props.room,
|
room: this.props.room,
|
||||||
screen: 'type_' + this.props.type,
|
screen: 'type_' + this.props.type,
|
||||||
integrationId: this.props.id
|
integrationId: this.props.id,
|
||||||
}, "mx_IntegrationsManager");
|
}, "mx_IntegrationsManager");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,7 +21,6 @@ import sdk from '../../../index';
|
||||||
import ScalarAuthClient from '../../../ScalarAuthClient';
|
import ScalarAuthClient from '../../../ScalarAuthClient';
|
||||||
import Modal from "../../../Modal";
|
import Modal from "../../../Modal";
|
||||||
import { _t } from '../../../languageHandler';
|
import { _t } from '../../../languageHandler';
|
||||||
import AccessibleButton from './AccessibleButton';
|
|
||||||
|
|
||||||
export default class ManageIntegsButton extends React.Component {
|
export default class ManageIntegsButton extends React.Component {
|
||||||
constructor(props) {
|
constructor(props) {
|
||||||
|
@ -47,7 +46,7 @@ export default class ManageIntegsButton extends React.Component {
|
||||||
title={_t("Manage Integrations")}
|
title={_t("Manage Integrations")}
|
||||||
onClick={this.onManageIntegrations}
|
onClick={this.onManageIntegrations}
|
||||||
/>
|
/>
|
||||||
)
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return integrationsButton;
|
return integrationsButton;
|
||||||
|
|
|
@ -77,7 +77,7 @@ export default class IntegrationsManager extends React.Component {
|
||||||
loading: false,
|
loading: false,
|
||||||
connected: false,
|
connected: false,
|
||||||
});
|
});
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
|
@ -135,4 +135,4 @@ export default class IntegrationsManager extends React.Component {
|
||||||
|
|
||||||
return <iframe src={this.state.src}></iframe>;
|
return <iframe src={this.state.src}></iframe>;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue