We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75d142d commit e5eaa5cCopy full SHA for e5eaa5c
src/components/containers/TraceAccordion.js
@@ -86,17 +86,17 @@ class TraceAccordion extends Component {
86
<TraceRequiredPanel noPadding>
87
<Tabs>
88
<TabList>
89
- <Tab>{_('All Traces')}</Tab>
90
- <Tab>{_('Individual')}</Tab>
+ <Tab>{_('Individually')}</Tab>
+ <Tab>{_('By Type')}</Tab>
91
</TabList>
92
- <TabPanel>
93
- <PlotlyPanel>{groupedTraces ? groupedTraces : null}</PlotlyPanel>
94
- </TabPanel>
95
<TabPanel>
96
<PlotlyPanel>
97
{individualTraces ? individualTraces : null}
98
</PlotlyPanel>
99
</TabPanel>
+ <TabPanel>
+ <PlotlyPanel>{groupedTraces ? groupedTraces : null}</PlotlyPanel>
+ </TabPanel>
100
</Tabs>
101
</TraceRequiredPanel>
102
);
0 commit comments