Skip to content

Commit 8194c07

Browse files
authored
nit(aci): fix borders on select all alert (#102977)
before <img width="1434" height="904" alt="image" src="https://github.com/user-attachments/assets/725d0d5c-6f51-470c-a7c0-8b3621fbc02c" /> after - looks the same as the issue stream <img width="1362" height="116" alt="Screenshot 2025-11-07 at 11 40 57 AM" src="https://github.com/user-attachments/assets/40153550-636d-4aa2-bbe6-8b375d4157a7" />
1 parent a487d40 commit 8194c07

File tree

2 files changed

+2
-2
lines changed
  • static/app/views

2 files changed

+2
-2
lines changed

static/app/views/automations/components/automationListTable/actions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ export function AutomationsTableActions({
190190
</ActionsBarWrapper>
191191
</SimpleTable.Header>
192192
{pageSelected && !allResultsVisible && (
193-
<FullWidthAlert type="warning" showIcon={false}>
193+
<FullWidthAlert type="warning" system showIcon={false}>
194194
<Flex justify="center" wrap="wrap" gap="md">
195195
{allInQuerySelected ? (
196196
tct('Selected all [count] alerts that match this search query.', {

static/app/views/detectors/components/detectorListTable/actions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ export function DetectorsTableActions({
214214
</ActionsBarWrapper>
215215
</SimpleTable.Header>
216216
{pageSelected && !allResultsVisible && (
217-
<FullWidthAlert type="warning" showIcon={false}>
217+
<FullWidthAlert type="warning" system showIcon={false}>
218218
<Flex justify="center" wrap="wrap" gap="md">
219219
{allInQuerySelected ? (
220220
tct('Selected all [count] monitors that match this search query.', {

0 commit comments

Comments
 (0)