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 = [
99
99
value : TRACING_LEVELS . off ,
100
100
content : TRACING_LEVELS_TITLES [ TRACING_LEVELS . off ] ,
101
101
text : i18n ( 'tracing-level-description.off' ) ,
102
+ isDefault : true ,
102
103
} ,
103
104
{
104
105
value : TRACING_LEVELS . toplevel ,
@@ -114,7 +115,6 @@ export const TRACING_LEVEL_SELECT_OPTIONS = [
114
115
value : TRACING_LEVELS . detailed ,
115
116
content : TRACING_LEVELS_TITLES [ TRACING_LEVELS . detailed ] ,
116
117
text : i18n ( 'tracing-level-description.detailed' ) ,
117
- isDefault : true ,
118
118
} ,
119
119
{
120
120
value : TRACING_LEVELS . diagnostic ,
Original file line number Diff line number Diff line change @@ -317,7 +317,7 @@ export const DEFAULT_QUERY_SETTINGS = {
317
317
timeout : 60 ,
318
318
limitRows : 10000 ,
319
319
statisticsMode : STATISTICS_MODES . none ,
320
- tracingLevel : TRACING_LEVELS . detailed ,
320
+ tracingLevel : TRACING_LEVELS . off ,
321
321
} ;
322
322
323
323
export const queryModeSchema = z . nativeEnum ( QUERY_MODES ) ;
You can’t perform that action at this time.
0 commit comments