remove empty table state lines

This commit is contained in:
miloschwartz
2026-04-22 17:43:29 -07:00
parent 6b83d3c3f1
commit f651ca84fa
3 changed files with 48 additions and 41 deletions

View File

@@ -77,11 +77,11 @@ function VerticalRuleStep({
className="flex flex-col items-center gap-0 shrink-0 w-8"
aria-hidden
>
<div className="flex h-8 w-8 items-center justify-center rounded-full border-2 border-border bg-background text-sm font-semibold text-muted-foreground">
<div className="flex h-8 w-8 items-center justify-center rounded-full border border-border bg-background text-sm text-muted-foreground">
{stepNumber}
</div>
{!isLast && (
<div className="w-px flex-1 min-h-8 my-1 border-l-2 border-dashed border-border" />
<div className="w-px flex-1 min-h-8 my-1 border-l border-dashed border-border" />
)}
</div>
<div
@@ -178,7 +178,7 @@ export default function AlertRuleGraphEditor({
>
<div className="flex flex-wrap items-center gap-2">
{isNew && (
<Badge variant="secondary" >
<Badge variant="secondary">
{t("alertingDraftBadge")}
</Badge>
)}
@@ -209,7 +209,9 @@ export default function AlertRuleGraphEditor({
render={({ field }) => (
<FormItem>
<FormLabel>
{t("alertingRuleCooldown")}
{t(
"alertingRuleCooldown"
)}
</FormLabel>
<FormControl>
<Input
@@ -229,7 +231,9 @@ export default function AlertRuleGraphEditor({
/>
</FormControl>
<FormDescription>
{t("alertingRuleCooldownDescription")}
{t(
"alertingRuleCooldownDescription"
)}
</FormDescription>
<FormMessage />
</FormItem>