We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36e4a27 commit 1f37d1cCopy full SHA for 1f37d1c
src/sentry/static/sentry/app/views/eventsV2/eventDetails/transaction/eventBreakdown.tsx
@@ -169,8 +169,8 @@ class EventBreakdown extends React.Component<Props> {
169
<SectionHeading>{t('Ops Breakdown')}</SectionHeading>
170
{results.ops.map(currentOp => {
171
const {name, percentage, totalDuration} = currentOp;
172
- const pctLabel = Math.round(percentage * 100) / 100;
173
- const durLabel = Math.round(totalDuration * 100) / 100;
+ const durLabel = Math.round(totalDuration * 1000);
+ const pctLabel = Math.round(percentage * 100);
174
const opsColor: string = pickSpanBarColour(name);
175
176
return (
@@ -222,7 +222,7 @@ const Dur = styled('div')`
222
`;
223
224
const Pct = styled('div')`
225
- min-width: 50px;
+ min-width: 40px;
226
text-align: right;
227
228
0 commit comments