Skip to content

Commit

Permalink
fix(bool-setting): remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Sisha0 committed Aug 25, 2022
1 parent 1c2741d commit 72f3c8d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/settings/bool-setting/bool-setting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ export class UIPBoolSetting extends UIPSetting {

protected connectedCallback() {
super.connectedCallback();
this.$label.remove();
this.insertBefore(this.$label, this.firstChild);
}

Expand Down Expand Up @@ -130,9 +129,7 @@ export class UIPBoolSetting extends UIPSetting {

protected setInconsistency(msg = WARNING_MSG.inconsistent): void {
this.$field.checked = false;
this.$inconsistencyMarker.remove();
this.$inconsistencyMarker.innerText = msg;
console.log(this.$inconsistencyMarker);
this.append(this.$inconsistencyMarker);
}

Expand Down

0 comments on commit 72f3c8d

Please sign in to comment.