Skip to content

Commit

Permalink
solved some eslint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Erwin Dondorp committed Feb 7, 2021
1 parent a091199 commit 5847101
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions saltgui/static/scripts/panels/Minions.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class MinionsPanel extends Panel {
this._handlewheelMinionsConnected(pWheelMinionsConnectedData);
return true;
}, (getWheelMinionsConnectedMsg) => {
console.log("pWheelMinionsConnectedMsg", pWheelMinionsConnectedMsg);
console.log("getWheelMinionsConnectedMsg", getWheelMinionsConnectedMsg);
return false;
});

Expand Down Expand Up @@ -101,7 +101,7 @@ export class MinionsPanel extends Panel {
this.setMsg(txt);
}

_handlewheelMinionsConnected(pWheelMinionsConnectedData) {
_handlewheelMinionsConnected (pWheelMinionsConnectedData) {
if (this.showErrorRowInstead(pWheelMinionsConnectedData)) {
return;
}
Expand All @@ -114,7 +114,9 @@ export class MinionsPanel extends Panel {
continue;
}
const statusTd = tr.querySelector("td.status");
if(!statusTd) continue;
if (!statusTd) {
continue;
}
// this is the initial warning only
// it will potentially be replaced by a less aggressive warning
// when the grains information is returned
Expand Down

0 comments on commit 5847101

Please sign in to comment.