[
https://issues.apache.org/jira/browse/AIRFLOW-3325?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16684079#comment-16684079
]
ASF GitHub Bot commented on AIRFLOW-3325:
-----------------------------------------
ashb closed pull request #4173: [AIRFLOW-3325] Fix UI Page DAGs-column 'Recent
Tasks' display issue
URL: https://github.com/apache/incubator-airflow/pull/4173
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git a/airflow/www/templates/airflow/dags.html
b/airflow/www/templates/airflow/dags.html
index 0a7a6ec2a4..5473189d43 100644
--- a/airflow/www/templates/airflow/dags.html
+++ b/airflow/www/templates/airflow/dags.html
@@ -402,7 +402,7 @@ <h2>DAGs</h2>
states = json[dag_id];
g = d3.select('svg#task-run-' + dag_id)
.attr('height', diameter + (stroke_width_hover * 2))
- .attr('width', '240px')
+ .attr('width', '270px')
.selectAll("g")
.data(states)
.enter()
diff --git a/airflow/www_rbac/templates/airflow/dags.html
b/airflow/www_rbac/templates/airflow/dags.html
index 5f492780d5..1cf15c0324 100644
--- a/airflow/www_rbac/templates/airflow/dags.html
+++ b/airflow/www_rbac/templates/airflow/dags.html
@@ -402,7 +402,7 @@ <h2>DAGs</h2>
states = json[dag_id];
g = d3.select('svg#task-run-' + dag_id)
.attr('height', diameter + (stroke_width_hover * 2))
- .attr('width', '240px')
+ .attr('width', '270px')
.selectAll("g")
.data(states)
.enter()
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
> Fix the DAGs page - column "Recent Tasks" display issue
> -------------------------------------------------------
>
> Key: AIRFLOW-3325
> URL: https://issues.apache.org/jira/browse/AIRFLOW-3325
> Project: Apache Airflow
> Issue Type: Improvement
> Components: ui
> Affects Versions: 1.10.1
> Reporter: Xiaodong DENG
> Assignee: Xiaodong DENG
> Priority: Minor
> Fix For: 1.10.1
>
> Attachments: Screen Shot 2018-11-10 at 11.01.43 AM.png
>
>
> In master branch and pre-release 1.10.1b1:
> In the main UI page, the "Recent Tasks" column is not displayed completely
> (the last circle "scheduled" is not displayed completely).
> Reason behind: a new task state "Skipped" is added while UI was not adjusted
> accordingly.
>
> Please check the screenshot attached.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)