File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
webapp/javascript/components Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -34,21 +34,21 @@ export default function ProfilerHeader({
34
34
< div className = "navbar-space-filler" />
35
35
< div className = "btn-group viz-switch" >
36
36
< button
37
- className = { clsx ( "btn" , { active : view == "table" } ) }
37
+ className = { clsx ( "btn" , { active : view === "table" } ) }
38
38
onClick = { ( ) => updateView ( "table" ) }
39
39
>
40
40
< FontAwesomeIcon icon = { faBars } />
41
41
 Table
42
42
</ button >
43
43
< button
44
- className = { clsx ( "btn" , { active : view == "both" } ) }
44
+ className = { clsx ( "btn" , { active : view === "both" } ) }
45
45
onClick = { ( ) => updateView ( "both" ) }
46
46
>
47
47
< FontAwesomeIcon icon = { faColumns } />
48
48
 Both
49
49
</ button >
50
50
< button
51
- className = { clsx ( "btn" , { active : view == "icicle" } ) }
51
+ className = { clsx ( "btn" , { active : view === "icicle" } ) }
52
52
onClick = { ( ) => updateView ( "icicle" ) }
53
53
>
54
54
< FontAwesomeIcon icon = { faIcicles } />
You can’t perform that action at this time.
0 commit comments