Skip to content

Commit e5eaa5c

Browse files
committed
Reverse Individual vs Grouped Tabs
1 parent 75d142d commit e5eaa5c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/components/containers/TraceAccordion.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,17 +86,17 @@ class TraceAccordion extends Component {
8686
<TraceRequiredPanel noPadding>
8787
<Tabs>
8888
<TabList>
89-
<Tab>{_('All Traces')}</Tab>
90-
<Tab>{_('Individual')}</Tab>
89+
<Tab>{_('Individually')}</Tab>
90+
<Tab>{_('By Type')}</Tab>
9191
</TabList>
92-
<TabPanel>
93-
<PlotlyPanel>{groupedTraces ? groupedTraces : null}</PlotlyPanel>
94-
</TabPanel>
9592
<TabPanel>
9693
<PlotlyPanel>
9794
{individualTraces ? individualTraces : null}
9895
</PlotlyPanel>
9996
</TabPanel>
97+
<TabPanel>
98+
<PlotlyPanel>{groupedTraces ? groupedTraces : null}</PlotlyPanel>
99+
</TabPanel>
100100
</Tabs>
101101
</TraceRequiredPanel>
102102
);

0 commit comments

Comments
 (0)