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 committed Dec 17, 2024
1 parent f53dcbc commit 879b37e
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,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 879b37e

@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.