Skip to content

Commit

Permalink
made eslint happy
Browse files Browse the repository at this point in the history
  • Loading branch information
ignapas committed Feb 28, 2024
1 parent 7c20d4d commit eedb622
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ qx.Class.define("osparc.desktop.wallets.WalletListItem", {

excludeShareButton: function() {
if (this.__shareButton) {
return this.__shareButton.exclude()
this.__shareButton.exclude()
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ qx.Class.define("osparc.utils.Utils", {
const nMinutes = Math.floor(remaining1 / 60000)
const remaining2 = remaining1 - (nMinutes * 60000)
const nSeconds = Math.round(remaining2 / 1000)
return `${ms < 0 ? '-' : ''}${nHours}:${nMinutes.toString().padStart(2, '0')}:${nSeconds.toString().padStart(2, '0')}`
return `${ms < 0 ? "-" : ""}${nHours}:${nMinutes.toString().padStart(2, "0")}:${nSeconds.toString().padStart(2, "0")}`
},

formatSeconds: function(seconds) {
Expand Down

0 comments on commit eedb622

Please sign in to comment.