mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-05 22:38:48 +00:00
fix lint issue (#1905)
This commit is contained in:
parent
fcd0e1d7c1
commit
d50ee7967c
1 changed files with 1 additions and 2 deletions
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Reference in a new issue