Skip to content

Commit 9736fe8

Browse files
committed
fixed button text in app folder
1 parent 93df55f commit 9736fe8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

app/containers/GraphsContainer.tsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ const GraphsContainer: React.FC = React.memo(props => {
4848
useEffect(() => {
4949
const serviceArray = service.split(' ');
5050
// 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+
);
5254
if (live) {
5355
setIntervalID(
5456
setInterval(() => {
@@ -156,10 +158,9 @@ const GraphsContainer: React.FC = React.memo(props => {
156158
onClick={() => routing('all')}
157159
key="0"
158160
>
159-
Metrics Query onclick is not coming thru
161+
Metrics Query
160162
</button>
161163
{HealthAndEventButtons}
162-
<div font-color='white'>Here I am! in GraphsContainer.tsx!</div>
163164
{dockerData.containername && (
164165
<button
165166
id="docker-button"

0 commit comments

Comments
 (0)