Skip to content

Commit d70a429

Browse files
committed
Avoid ui jump on env selection
1 parent 0719def commit d70a429

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/webapp/app/components/runs/v3/ReplayRunDialog.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ function ReplayForm({
503503
<Button variant="tertiary/medium">Cancel</Button>
504504
</DialogClose>
505505
<div className="flex items-center gap-3">
506-
<InputGroup className="flex flex-row items-center">
506+
<InputGroup className="flex flex-row items-center gap-3">
507507
<Label>Replay this run in</Label>
508508
<Select
509509
{...conform.select(environment)}
@@ -514,7 +514,7 @@ function ReplayForm({
514514
value={environmentIdOverride}
515515
setValue={setEnvironmentIdOverride}
516516
variant="tertiary/medium"
517-
className="w-fit pl-1"
517+
className="min-w-44"
518518
filter={{
519519
keys: [
520520
(item) => item.type.replace(/\//g, " ").replace(/_/g, " "),

0 commit comments

Comments
 (0)