fix(sqllab): preserve saved query description when editing (#41685)

This commit is contained in:
Mehmet Salih Yavuz
2026-07-07 10:19:25 +03:00
committed by GitHub
parent c846da8dfb
commit de5a233ccf
4 changed files with 53 additions and 4 deletions

View File

@@ -1539,6 +1539,7 @@ export function popSavedQuery(
} as Record<string, unknown>;
const tmpAdaptedProps = {
name: queryEditorProps.name as string,
description: queryEditorProps.description as string,
dbId: (queryEditorProps.database as { id: number }).id,
catalog: queryEditorProps.catalog as string,
schema: queryEditorProps.schema as string,