-
Notifications
You must be signed in to change notification settings - Fork 53
fixed api for gocd v21.2.0 #72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
// Chart.defaults.global.defaultFontColor = 'white'; | ||
// Chart.defaults.global.defaultFontFamily = 'Roboto'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why was this removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had an issue with fonts in the chrome dev tools console, UI was broken for me, once I commented out those lines - I was able to see pipelines, not sure if it doesn't work only for me or for others as well.
@@ -141,7 +141,7 @@ export default class GoService { | |||
let pipelineNameToGroupName = new Object(); | |||
pipelineGroups.forEach((pipelineGroup) => { | |||
pipelineGroup.pipelines.map((pipeline) => { | |||
if (pipelineNameToGroupName[pipeline.name] == undefined) { | |||
if (pipelineNameToGroupName[pipeline.name] === undefined) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
⭐
Thanks for this @Antonos and sorry for the late review. I'll merge this, but please answer my comment :) |
No description provided.