mirror of
https://github.com/apache/superset.git
synced 2026-04-20 00:24:38 +00:00
fix: change database save in DatasourceEditor (#9255)
* fix: change database save in DatasourceEditor This addresses the issue where pointing a datasource to another database in the datasource editor is not reflected. Also addresses: - a minorcosmetic issue in the datasource editor. - user/owners list not getting populated * tests
This commit is contained in:
committed by
GitHub
parent
99242225d6
commit
116200cf73
@@ -729,11 +729,13 @@ export class DatasourceEditor extends React.PureComponent {
|
||||
<Tab eventKey={4} title={t('Settings')}>
|
||||
{activeTabKey === 4 && (
|
||||
<div>
|
||||
<div className="change-warning well">
|
||||
<span className="bold">{t('Be careful.')} </span>
|
||||
{t(
|
||||
'Changing these settings will affect all charts using this datasource, including charts owned by other people.',
|
||||
)}
|
||||
<div className="m-t-10">
|
||||
<Alert bsStyle="warning">
|
||||
<span className="bold">{t('Be careful.')} </span>
|
||||
{t(
|
||||
'Changing these settings will affect all charts using this datasource, including charts owned by other people.',
|
||||
)}
|
||||
</Alert>
|
||||
</div>
|
||||
<Col md={6}>
|
||||
<FormContainer>{this.renderSettingsFieldset()}</FormContainer>
|
||||
|
||||
Reference in New Issue
Block a user