bbovenzi commented on code in PR #26457:
URL: https://github.com/apache/airflow/pull/26457#discussion_r980507113
##########
airflow/www/static/js/dag/grid/dagRuns/Bar.tsx:
##########
@@ -110,7 +110,11 @@ const DagRunBar = ({
width="10px"
height={`${(duration / max) * BAR_HEIGHT}px`}
minHeight="14px"
- backgroundColor={stateColors[state]}
+ background={
+ run.notes != null && run.notes !== ''
+ ? `linear-gradient(-135deg,#000 8px, ${stateColors[state]} 0);`
Review Comment:
Could you provide more screenshots of what a dag run / task instance with a
note looks like?
I'm not sure if we should have a visual indication on the grid if something
has a note.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]