Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
setchy committed Jul 14, 2023
1 parent 0954c6b commit bbd2f9a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/util/factory.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ const plotRadar = function (title, blips, currentRadarName, alternativeRadars) {
const size = featureToggles.UIRefresh2022
? getGraphSize()
: window.innerHeight - 133 < 620
? 620
: window.innerHeight - 133
? 620
: window.innerHeight - 133
new GraphingRadar(size, radar).init().plot()
}

Expand Down Expand Up @@ -393,9 +393,9 @@ function plotFooter(content) {
.append('p')
.html(
'Powered by <a href="https://www.thoughtworks.com"> Thoughtworks</a>. ' +
'By using this service you agree to <a href="https://www.thoughtworks.com/radar/tos">Thoughtworks\' terms of use</a>. ' +
'You also agree to our <a href="https://www.thoughtworks.com/privacy-policy">privacy policy</a>, which describes how we will gather, use and protect any personal data contained in your public Google Sheet. ' +
'This software is <a href="https://github.com/thoughtworks/build-your-own-radar">open source</a> and available for download and self-hosting.',
'By using this service you agree to <a href="https://www.thoughtworks.com/radar/tos">Thoughtworks\' terms of use</a>. ' +
'You also agree to our <a href="https://www.thoughtworks.com/privacy-policy">privacy policy</a>, which describes how we will gather, use and protect any personal data contained in your public Google Sheet. ' +
'This software is <a href="https://github.com/thoughtworks/build-your-own-radar">open source</a> and available for download and self-hosting.',
)
}

Expand Down
2 changes: 1 addition & 1 deletion src/util/urlUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ function getSheetName() {
module.exports = {
constructSheetUrl,
getDocumentOrSheetId,
getSheetName
getSheetName,
}

0 comments on commit bbd2f9a

Please sign in to comment.