ryanahamilton opened a new pull request #12490:
URL: https://github.com/apache/airflow/pull/12490


   `graph.js` was not being compiled into executable JavaScript since it 
[wasn't explicitly declared in the 
`webpack.config.js`](https://github.com/apache/airflow/blob/master/airflow/www/webpack.config.js#L45).
   ```js
   entry: {
     // This line:
     graph: `${STATIC_DIR}/css/graph.css`,
     // should have been:
     graph: [`${STATIC_DIR}/css/graph.css`, `${STATIC_DIR}/js/graph.js`],
   }
   ```
   This issue is moot as the [functionality was moved/rewritten 
inline](https://github.com/apache/airflow/blob/master/airflow/www/templates/airflow/graph.html#L459-L476)
 within the `graph.html` template file at some point. To that end, I've simply 
deleted the file and confirmed the functionality still persists.


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

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to