This is an automated email from the ASF dual-hosted git repository.
jedcunningham pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 1cf380a08e8 Vertical Align Alert Icon (#48577)
1cf380a08e8 is described below
commit 1cf380a08e883a5c9fa7aff223c6120f7aaf90de
Author: Pierre Jeambrun <[email protected]>
AuthorDate: Mon Mar 31 16:27:01 2025 +0200
Vertical Align Alert Icon (#48577)
---
airflow-core/src/airflow/ui/src/components/ui/Alert.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow-core/src/airflow/ui/src/components/ui/Alert.tsx
b/airflow-core/src/airflow/ui/src/components/ui/Alert.tsx
index b7fb3f8e4b2..bdbd0795902 100644
--- a/airflow-core/src/airflow/ui/src/components/ui/Alert.tsx
+++ b/airflow-core/src/airflow/ui/src/components/ui/Alert.tsx
@@ -34,7 +34,7 @@ export const Alert = forwardRef<HTMLDivElement,
AlertProps>((props, ref) => {
const { children, closable, endElement, icon, onClose, startElement, title,
...rest } = props;
return (
- <ChakraAlert.Root ref={ref} {...rest}>
+ <ChakraAlert.Root ref={ref} {...rest} alignItems="center">
{startElement ?? <ChakraAlert.Indicator>{icon}</ChakraAlert.Indicator>}
{Boolean(children) ? (
<ChakraAlert.Content>