fix(sqllab): unable to update saved queries (#31639)

This commit is contained in:
Damian Pendrak
2025-01-09 11:16:08 +01:00
committed by GitHub
parent 9cd3a8d5b0
commit 3a6fdf8bdf
2 changed files with 110 additions and 0 deletions

View File

@@ -1204,6 +1204,7 @@ export function popSavedQuery(saveQueryId) {
schema: queryEditorProps.schema,
sql: queryEditorProps.sql,
templateParams: queryEditorProps.templateParams,
remoteId: queryEditorProps.remoteId,
};
return dispatch(addQueryEditor(tmpAdaptedProps));
})