mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
feat(SqlLab): Change Save Dataset Button to Split Save Query Button IV (#20852)
* Moving entire split save btn PR * Addressed review comments * Remove arbitrary div from ErrorBoundary in Chart * Added accidentally removed comment * Fix act errors in SaveQuery tests * Fix SaveDatasetActionButton test * SaveDatasetModal test almost working * SaveDatasetModal tests all passing * Clean SaveDatasetModal test * Fix create chart button and SaveDatasetModal text in SQL Lab * Fix untitled dataset name on SaveDatasetModal in explore * Fix styling on split save button
This commit is contained in:
committed by
GitHub
parent
3a11856ecb
commit
8a04536f9d
@@ -18,7 +18,7 @@
|
||||
*/
|
||||
export const getDatasourceAsSaveableDataset = source => ({
|
||||
columns: source.columns,
|
||||
name: source?.datasource_name || 'Untitled',
|
||||
name: source?.datasource_name || source?.name || 'Untitled',
|
||||
dbId: source.database.id,
|
||||
sql: source?.sql || '',
|
||||
schema: source?.schema,
|
||||
|
||||
Reference in New Issue
Block a user