Unverified Commit 907e797f authored by Michelle Nguyen's avatar Michelle Nguyen Committed by Copybara
Browse files

Fix request graph icons

Summary: Accidentally switched the icons for hierarchy/clustered modes

Test Plan: yarn dev

Reviewers: vihang, zasgar, philkuz

Reviewed By: vihang

Differential Revision: https://phab.corp.pixielabs.ai/D8728

GitOrigin-RevId: 6b5d3491fe8c13a277139bd1782f1b4a0641b0b8
parent 1aa35556
Showing with 2 additions and 2 deletions
+2 -2
......@@ -337,7 +337,7 @@ export const RequestGraphWidget = (props: RequestGraphProps) => {
onClick={toggleHierarchy}
className={hierarchyEnabled ? classes.enabled : ''}
>
<WorkspacesIcon />
<AccountTreeIcon />
</IconButton>
</Tooltip>
<Tooltip title={clusteredMode ? 'Clustered by service' : 'Clustering disabled'}>
......@@ -346,7 +346,7 @@ export const RequestGraphWidget = (props: RequestGraphProps) => {
onClick={toggleMode}
className={clusteredMode ? classes.enabled : ''}
>
<AccountTreeIcon />
<WorkspacesIcon />
</IconButton>
</Tooltip>
</div>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment