bbovenzi commented on a change in pull request #22272:
URL: https://github.com/apache/airflow/pull/22272#discussion_r828198262
##########
File path: airflow/www/static/js/gantt.js
##########
@@ -204,7 +204,7 @@ d3.gantt = () => {
.on('mouseover', tip.show)
.on('mouseout', tip.hide)
.on('click', (d) => {
- callModal(d.task_id, d.execution_date, d.extraLinks, undefined,
undefined, d.run_id);
+ callModal(d.task_id, d.execution_date, d.extraLinks, undefined,
undefined, d.run_id, d.map_index);
Review comment:
```suggestion
// eslint-disable-next-line max-len
callModal(d.task_id, d.execution_date, d.extraLinks, undefined,
undefined, d.run_id, d.map_index);
```
linter is angry about this. Let's ignore it for now. In a later PR, I would
like to use object props here to avoid passing `undefined` and make it clearer
which arg is what.
--
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]