bbovenzi commented on a change in pull request #20273:
URL: https://github.com/apache/airflow/pull/20273#discussion_r770752438



##########
File path: airflow/www/static/js/dag.js
##########
@@ -283,7 +283,10 @@ $('#pause_resume').on('change', function onChange() {
 $('#next-run').on('mouseover', () => {
   $('#next-run').attr('data-original-title', () => {
     let newTitle = '';
-    if (nextRun.createAfter) newTitle += `<strong>Run After:</strong> 
${formatDateTime(nextRun.createAfter)}<br><br>`;
+    if (nextRun.createAfter) {
+      newTitle += `<strong>Run After:</strong> 
${formatDateTime(nextRun.createAfter)}<br>`;
+      newTitle += `Next Run: 
${approxTimeFromNow(nextRun.createAfter)}<br><br>`;

Review comment:
       ```suggestion
         newTitle += `Next Run 
${approxTimeFromNow(nextRun.createAfter)}<br><br>`;
   ```
   We can drop `:`




-- 
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]


Reply via email to