File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
containers/Tenant/Query/QuerySettingsDialog Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -99,6 +99,7 @@ export const TRACING_LEVEL_SELECT_OPTIONS = [
9999 value : TRACING_LEVELS . off ,
100100 content : TRACING_LEVELS_TITLES [ TRACING_LEVELS . off ] ,
101101 text : i18n ( 'tracing-level-description.off' ) ,
102+ isDefault : true ,
102103 } ,
103104 {
104105 value : TRACING_LEVELS . toplevel ,
@@ -114,7 +115,6 @@ export const TRACING_LEVEL_SELECT_OPTIONS = [
114115 value : TRACING_LEVELS . detailed ,
115116 content : TRACING_LEVELS_TITLES [ TRACING_LEVELS . detailed ] ,
116117 text : i18n ( 'tracing-level-description.detailed' ) ,
117- isDefault : true ,
118118 } ,
119119 {
120120 value : TRACING_LEVELS . diagnostic ,
Original file line number Diff line number Diff line change @@ -317,7 +317,7 @@ export const DEFAULT_QUERY_SETTINGS = {
317317 timeout : 60 ,
318318 limitRows : 10000 ,
319319 statisticsMode : STATISTICS_MODES . none ,
320- tracingLevel : TRACING_LEVELS . detailed ,
320+ tracingLevel : TRACING_LEVELS . off ,
321321} ;
322322
323323export const queryModeSchema = z . nativeEnum ( QUERY_MODES ) ;
You can’t perform that action at this time.
0 commit comments