Skip to content

Commit 89f5174

Browse files
authored
fix(alert): Add list to non-wizard rule form (#25500)
Adds the <List> component to the non-wizard builder form to fix this styling issue. Kinda weird to have another list just for this, but this will be only necessary until the alert wizard GA's
1 parent f3f11f0 commit 89f5174

File tree

1 file changed

+4
-2
lines changed
  • static/app/views/settings/incidentRules/ruleForm

1 file changed

+4
-2
lines changed

static/app/views/settings/incidentRules/ruleForm/index.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -735,8 +735,10 @@ class RuleFormContainer extends AsyncComponent<Props, State> {
735735
thresholdChart={chart}
736736
onFilterSearch={this.handleFilterUpdate}
737737
/>
738-
{triggerForm(hasAccess)}
739-
{ruleNameOwnerForm(hasAccess)}
738+
<List symbol="colored-numeric" initialCounterValue={2}>
739+
{triggerForm(hasAccess)}
740+
{ruleNameOwnerForm(hasAccess)}
741+
</List>
740742
</React.Fragment>
741743
)
742744
}

0 commit comments

Comments
 (0)