fix lint issue (#1905)

This commit is contained in:
Gandharv 2022-01-23 14:23:01 +05:30 committed by GitHub
parent fcd0e1d7c1
commit d50ee7967c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -544,11 +544,10 @@ class DataSourceManager extends React.Component {
return (
<div>
<Modal
className="animation-fade"
show={this.props.showDataSourceManagerModal}
size={selectedDataSource ? 'lg' : 'xl'}
onEscapeKeyDown={this.hideModal}
className={selectedDataSource ? 'mt-5' : 'mt-5 select-datasource-list-modal'}
className={selectedDataSource ? 'mt-5 animation-fade' : 'mt-5 select-datasource-list-modal animation-fade'}
contentClassName={this.props.darkMode ? 'theme-dark' : ''}
animation={false}
onExit={this.onExit}