mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 19:56:47 +03:00
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, {
|
||||
room: this.props.room,
|
||||
screen: 'type_' + this.props.type,
|
||||
integrationId: this.props.id
|
||||
integrationId: this.props.id,
|
||||
}, "mx_IntegrationsManager");
|
||||
}
|
||||
}
|
||||
|
|
|
@ -21,7 +21,6 @@ import sdk from '../../../index';
|
|||
import ScalarAuthClient from '../../../ScalarAuthClient';
|
||||
import Modal from "../../../Modal";
|
||||
import { _t } from '../../../languageHandler';
|
||||
import AccessibleButton from './AccessibleButton';
|
||||
|
||||
export default class ManageIntegsButton extends React.Component {
|
||||
constructor(props) {
|
||||
|
@ -47,7 +46,7 @@ export default class ManageIntegsButton extends React.Component {
|
|||
title={_t("Manage Integrations")}
|
||||
onClick={this.onManageIntegrations}
|
||||
/>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
return integrationsButton;
|
||||
|
|
|
@ -77,7 +77,7 @@ export default class IntegrationsManager extends React.Component {
|
|||
loading: false,
|
||||
connected: false,
|
||||
});
|
||||
})
|
||||
});
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
|
|
Loading…
Reference in a new issue