From f3b99969ceec245e767707cc0547108c7512a77e Mon Sep 17 00:00:00 2001 From: Mia Hsu Date: Fri, 7 Nov 2025 10:33:50 -0800 Subject: [PATCH 1/2] nit(aci): fix borders on select all alert --- .../automations/components/automationListTable/actions.tsx | 3 +++ .../views/detectors/components/detectorListTable/actions.tsx | 3 +++ 2 files changed, 6 insertions(+) diff --git a/static/app/views/automations/components/automationListTable/actions.tsx b/static/app/views/automations/components/automationListTable/actions.tsx index 8813736a839337..e508d1c848d4ef 100644 --- a/static/app/views/automations/components/automationListTable/actions.tsx +++ b/static/app/views/automations/components/automationListTable/actions.tsx @@ -219,6 +219,9 @@ export function AutomationsTableActions({ const FullWidthAlert = styled(Alert)` grid-column: 1 / -1; + border-radius: 0; + border: none; + border-bottom: 1px solid ${p => p.theme.yellow300}; `; const ActionsBarWrapper = styled('div')` diff --git a/static/app/views/detectors/components/detectorListTable/actions.tsx b/static/app/views/detectors/components/detectorListTable/actions.tsx index 1717d4be6a04eb..93f7804d064b5b 100644 --- a/static/app/views/detectors/components/detectorListTable/actions.tsx +++ b/static/app/views/detectors/components/detectorListTable/actions.tsx @@ -243,6 +243,9 @@ export function DetectorsTableActions({ const FullWidthAlert = styled(Alert)` grid-column: 1 / -1; + border-radius: 0; + border: none; + border-bottom: 1px solid ${p => p.theme.yellow300}; `; const ActionsBarWrapper = styled('div')` From c1bf71deb271557317e9f6d81d121f0d45c6fa2f Mon Sep 17 00:00:00 2001 From: Mia Hsu Date: Fri, 7 Nov 2025 11:51:56 -0800 Subject: [PATCH 2/2] system --- .../automations/components/automationListTable/actions.tsx | 5 +---- .../views/detectors/components/detectorListTable/actions.tsx | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/static/app/views/automations/components/automationListTable/actions.tsx b/static/app/views/automations/components/automationListTable/actions.tsx index e508d1c848d4ef..2ba538aa4c38d9 100644 --- a/static/app/views/automations/components/automationListTable/actions.tsx +++ b/static/app/views/automations/components/automationListTable/actions.tsx @@ -190,7 +190,7 @@ export function AutomationsTableActions({ {pageSelected && !allResultsVisible && ( - + {allInQuerySelected ? ( tct('Selected all [count] alerts that match this search query.', { @@ -219,9 +219,6 @@ export function AutomationsTableActions({ const FullWidthAlert = styled(Alert)` grid-column: 1 / -1; - border-radius: 0; - border: none; - border-bottom: 1px solid ${p => p.theme.yellow300}; `; const ActionsBarWrapper = styled('div')` diff --git a/static/app/views/detectors/components/detectorListTable/actions.tsx b/static/app/views/detectors/components/detectorListTable/actions.tsx index 93f7804d064b5b..c76c3f06c3fe86 100644 --- a/static/app/views/detectors/components/detectorListTable/actions.tsx +++ b/static/app/views/detectors/components/detectorListTable/actions.tsx @@ -214,7 +214,7 @@ export function DetectorsTableActions({ {pageSelected && !allResultsVisible && ( - + {allInQuerySelected ? ( tct('Selected all [count] monitors that match this search query.', { @@ -243,9 +243,6 @@ export function DetectorsTableActions({ const FullWidthAlert = styled(Alert)` grid-column: 1 / -1; - border-radius: 0; - border: none; - border-bottom: 1px solid ${p => p.theme.yellow300}; `; const ActionsBarWrapper = styled('div')`