Skip to content

Commit

Permalink
refactor(uip-bool-setting): remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
Sisha0 committed Apr 26, 2021
1 parent 5ecc868 commit c7f333c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/settings/setting/bool-setting/bool-setting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ export class UIPBoolSetting extends UIPSetting {
const valRegex = new RegExp(` ?${this.value} ?`);

model.transformAttribute(this.target, this.attribute, attrValue => {
console.log(attrValue?.replace(valRegex, ''));
return attrValue === null ? val || null : attrValue.replace(valRegex, '') + `${val ? ' ' + val : ''}`;
});
}
Expand Down

0 comments on commit c7f333c

Please sign in to comment.