File tree Expand file tree Collapse file tree 2 files changed +14
-11
lines changed
src/containers/Tenant/Query/ExecuteResult Expand file tree Collapse file tree 2 files changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -121,16 +121,18 @@ export function ExecuteResult({
121121 </ div >
122122 ) }
123123 < div className = { b ( 'result' ) } >
124- { currentResult ?. truncated ? (
125- < div className = { b ( 'result-head' ) } >
126- < Text variant = "subheader-3" > { i18n ( 'truncated' ) } </ Text >
127- < Text
128- color = "secondary"
129- variant = "body-2"
130- className = { b ( 'row-count' ) }
131- > { `(${ currentResult ?. result ?. length } )` } </ Text >
132- </ div >
133- ) : null }
124+ < div className = { b ( 'result-head' ) } >
125+ < Text variant = "subheader-3" >
126+ { currentResult ?. truncated
127+ ? i18n ( 'title.truncated' )
128+ : i18n ( 'title.result' ) }
129+ </ Text >
130+ < Text
131+ color = "secondary"
132+ variant = "body-2"
133+ className = { b ( 'row-count' ) }
134+ > { `(${ currentResult ?. result ?. length } )` } </ Text >
135+ </ div >
134136 < QueryResultTable
135137 data = { currentResult ?. result }
136138 columns = { currentResult ?. columns }
Original file line number Diff line number Diff line change 66 "action.explain-plan" : " Explain Plan" ,
77 "action.copy" : " Copy {{activeSection}}" ,
88 "trace" : " Trace" ,
9- "truncated" : " Truncated"
9+ "title.truncated" : " Truncated" ,
10+ "title.result" : " Result"
1011}
You can’t perform that action at this time.
0 commit comments