mik-laj commented on issue #361: URL: https://github.com/apache/airflow-site/issues/361#issuecomment-748545981
I confirm. I have this problem too. This issue appears to have been reported previously. See: https://github.com/apache/airflow-site/issues/254 I took a quick look at it and it seems to me it is enough to make the following change to this problem, but I don't have time to check it and update all the files on docs-archive. https://github.com/apache/airflow-site/blob/11f9122db84d89ea0508ec8e3516e328c4df4158/landing-pages/src/js/progressTracking.js#L34 ```diff - targetElement = document.querySelector(`#${target}`); + targetElement = document.getElementById(target); ``` When an element has an ID that contains a dot symbol, the expression parser gets lost and cannot find the element because it starts interpreting part of the expression as [a class selector](https://developer.mozilla.org/pl/docs/Web/CSS/Selektor_klasy). @wolfier Can you see if this fixes this problem? ---------------------------------------------------------------- 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]
