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/10/10 14:59:41 UTC

[GitHub] [airflow] bbovenzi commented on a diff in pull request #26584: Support Is /not Null filter for value is None on webui

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


##########
airflow/www/static/js/main.js:
##########
@@ -226,10 +255,14 @@ $(document).ready(() => {
   $.fn.datetimepicker.defaults.sideBySide = true;
   $('.datetimepicker').datetimepicker();
 
+  $('.filters .select2-chosen').each((idx, el) => { filterOpSelected(el); });

Review Comment:
   ```suggestion
     $('.filters .select2-chosen').each((idx, e) => { filterOpSelected(e); });
   ```
   Looks like `el` is already defined in the file and causing linting issues.



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