PeteGoo / tcSlackBuildNotifier

Posts build notifications to Slack
MIT License
311 stars 79 forks source link

Teamcity 2018.2.1 (build 61078) builds tabs blank. #167

Open cycotek opened 5 years ago

cycotek commented 5 years ago

The builds tab is now blank when adjusting or creating a new notification, tested this on 2 seperate Teamcity servers in different environments. After upgrade to 2018.2 the build tab no longer has builds list of jobs listed under the project. Unable to adjust any build notifications under any project, build or sub.

tcslack

marvin-w commented 5 years ago

Hi @cycotek, I'm sorry to hear that. Unfortunately the owner of this repository is no longer actively maintaining this plugin. The codebase is very old and I doubt that this would be an easy fix. If I have a lot of time I might consider looking into it but since I don't use TeamCity myself this is not very high on my prio list.

peter-majeed commented 5 years ago

FWIW, this is just a problem with library that this plugin is using to display these tabs. I don't like it, but a workaround for me has been to inspect that element via developer tools, then clear out the css that sets the height for that element to 0px.

RamKalikaya commented 5 years ago

Adding to what Peter Majeed said, i have stored small snippet as bookmark url, whenever i need to see the tab content i will just click that bookmark which will set the height to specified pixel.

javascript:(function(){document.querySelectorAll(".panel-container #buildPane")[0].style.height = "300px";})();