File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,9 @@ const GraphsContainer: React.FC = React.memo(props => {
48
48
useEffect ( ( ) => {
49
49
const serviceArray = service . split ( ' ' ) ;
50
50
// You would think you should add "kubernetesmetrics" into the below for consistency's sake but it makes it not work correctly, so it has been omitted
51
- const healthServiceArray = serviceArray . filter ( ( value : string ) => value !== 'kafkametrics' && value !== 'kubernetesmetrics' ) ;
51
+ const healthServiceArray = serviceArray . filter (
52
+ ( value : string ) => value !== 'kafkametrics' && value !== 'kubernetesmetrics'
53
+ ) ;
52
54
if ( live ) {
53
55
setIntervalID (
54
56
setInterval ( ( ) => {
@@ -156,10 +158,9 @@ const GraphsContainer: React.FC = React.memo(props => {
156
158
onClick = { ( ) => routing ( 'all' ) }
157
159
key = "0"
158
160
>
159
- Metrics Query onclick is not coming thru
161
+ Metrics Query
160
162
</ button >
161
163
{ HealthAndEventButtons }
162
- < div font-color = 'white' > Here I am! in GraphsContainer.tsx!</ div >
163
164
{ dockerData . containername && (
164
165
< button
165
166
id = "docker-button"
You can’t perform that action at this time.
0 commit comments