diff --git a/superset-frontend/src/explore/components/SaveModal.jsx b/superset-frontend/src/explore/components/SaveModal.jsx index 40afd289c98..fb32a8e5a41 100644 --- a/superset-frontend/src/explore/components/SaveModal.jsx +++ b/superset-frontend/src/explore/components/SaveModal.jsx @@ -232,7 +232,9 @@ class SaveModal extends React.Component { disabled={!this.state.newSliceName} data-test="btn-modal-save" > - {t('Save')} + {!this.props.can_overwrite && this.props.slice + ? t('Save as new chart') + : t('Save')}