File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
src/components/QueriesActivityBar Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ export function QueriesActivityAlert({
5454 </ Flex >
5555 < Flex wrap alignItems = "center" gap = { 1 } className = { b ( 'stats' ) } >
5656 < Label
57- theme = " success"
57+ theme = { runningQueriesCount > 0 ? ' success' : 'unknown' }
5858 icon = { < Icon data = { CirclePlay } /> }
5959 size = "s"
6060 value = { String ( runningQueriesCount ) }
Original file line number Diff line number Diff line change @@ -107,6 +107,13 @@ export function QueriesActivityBar({tenantName}: QueriesActivityBarProps) {
107107
108108 < Flex alignItems = "center" gap = { 4 } className = { b ( 'header-metrics' ) } >
109109 < div className = { b ( 'metrics' ) } >
110+ < Label
111+ theme = { runningQueriesCount > 0 ? 'success' : 'unknown' }
112+ size = "s"
113+ icon = { < Icon data = { CirclePlay } size = { 14 } /> }
114+ >
115+ { runningQueriesCount }
116+ </ Label >
110117 < Label
111118 theme = "unknown"
112119 icon = { < Icon data = { Rocket } /> }
You can’t perform that action at this time.
0 commit comments