Skip to content

Commit

Permalink
change beacon warning icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Erwin Dondorp committed Jul 20, 2021
1 parent 3679f13 commit 50b2948
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions saltgui/static/scripts/Character.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export class Character {
Character.BLACK_DOWN_POINTING_TRIANGLE = "\u25BC";
Character.WHITE_DOWN_POINTING_TRIANGLE = "\u25BD";
Character.BLACK_CIRCLE = "\u25CF";
Character.WARNING_SIGN = "\u26A0";
Character.HEAVY_CHECK_MARK = "\u2714";
Character.HEAVY_MULTIPLICATION_X_MONO =
"\u2716" + Character._VARIATION_SELECTOR_15;
Expand Down
2 changes: 1 addition & 1 deletion saltgui/static/scripts/panels/BeaconsMinion.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export class BeaconsMinionPanel extends Panel {

const helpButtonTd = Utils.createTd("help-button");
const helpButtonSpan = Utils.createSpan("nearly-visible-button", "", this.key + "-" + beaconName + "-help-button");
helpButtonSpan.innerText = Character.BLACK_QUESTION_MARK_ORNAMENT_MONO;
helpButtonSpan.innerText = Character.WARNING_SIGN;
helpButtonSpan.style.display = "none";
helpButtonSpan.style.cursor = "help";
helpButtonTd.appendChild(helpButtonSpan);
Expand Down

0 comments on commit 50b2948

Please sign in to comment.