Skip to content

Commit

Permalink
Fix: full width for TDD charts (#6288)
Browse files Browse the repository at this point in the history
  • Loading branch information
djbarnwal authored Dec 17, 2024
1 parent 47d0463 commit 22c3255
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,10 @@
class:flex-row={!expandedMeasureName}
class:left-shift={extraLeftPadding}
>
<div class="pt-2 flex-none" style:width="{metricsWidth}px">
<div
class="pt-2 flex-none"
style:width={expandedMeasureName ? "auto" : `${metricsWidth}px`}
>
{#key exploreName}
{#if !$metricTimeSeries.isLoading}
{#if hasTimeSeries}
Expand Down

1 comment on commit 22c3255

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.