This is an automated email from the ASF dual-hosted git repository.
potiuk 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 8a9699161f Remove colon from notes header to make headlines in UI
consistent (#40001)
8a9699161f is described below
commit 8a9699161f8873d3f2b65580463c95001bb34e79
Author: Jens Scheffler <[email protected]>
AuthorDate: Sun Jun 2 07:00:31 2024 +0200
Remove colon from notes header to make headlines in UI consistent (#40001)
---
airflow/www/static/js/dag/details/NotesAccordion.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow/www/static/js/dag/details/NotesAccordion.tsx
b/airflow/www/static/js/dag/details/NotesAccordion.tsx
index dfe47a2a52..04408d7251 100644
--- a/airflow/www/static/js/dag/details/NotesAccordion.tsx
+++ b/airflow/www/static/js/dag/details/NotesAccordion.tsx
@@ -120,7 +120,7 @@ const NotesAccordion = ({
<AccordionButton p={0} pb={2} fontSize="inherit">
<Box flex="1" textAlign="left" onClick={toggleNotesPanel}>
<Text as="strong" size="lg">
- {objectIdentifier} Notes:
+ {objectIdentifier} Notes
</Text>
</Box>
<AccordionIcon />