Skip to content

Commit c1ecb53

Browse files
nsdeschenesClaude Opus 4.6
andcommitted
fix(metrics): Restore tab list and actions render order
The tab list (Samples/Aggregates) should render before additionalActions in the Flex container so it appears on the left, with the PanelPositionSelector and HideContentButton on the right. Co-Authored-By: Claude Opus 4.6 <noreply@example.com>
1 parent 60a1e6c commit c1ecb53

File tree

1 file changed

+1
-1
lines changed
  • static/app/views/explore/metrics/metricInfoTabs

1 file changed

+1
-1
lines changed

static/app/views/explore/metrics/metricInfoTabs/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ export function MetricInfoTabs({
5252
>
5353
{orientation === 'right' || visualize.visible ? (
5454
<Flex direction="row" justify="between" align="center" paddingRight="xl">
55-
{additionalActions}
5655
<MetricInfoTabList orientation={orientation} contentsHidden={contentsHidden} />
56+
{additionalActions}
5757
</Flex>
5858
) : null}
5959
{visualize.visible && !contentsHidden ? (

0 commit comments

Comments
 (0)