You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2022/08/31 13:31:12 UTC

[GitHub] [airflow] bbovenzi commented on a diff in pull request #26043: Add trigger rule tooltip

bbovenzi commented on code in PR #26043:
URL: https://github.com/apache/airflow/pull/26043#discussion_r959590131


##########
airflow/www/static/js/task_instances.js:
##########
@@ -98,6 +98,7 @@ export default function tiTooltip(ti, { includeTryNumber = false } = {}) {
   if (ti.operator !== undefined) {
     tt += `Operator: ${escapeHtml(ti.operator)}<br>`;
   }
+  tt += `Trigger Rule: ${task.trigger_rule}<br>`;

Review Comment:
   Wrap this in an if statement checking that task and trigger_rule are defined.
   



-- 
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: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org