Skip to content

Commit

Permalink
fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
BabyElias committed Dec 8, 2023
1 parent 9823411 commit 9c3662c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/KRadioButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -173,10 +173,10 @@
},
},
mounted() {
if (this.buttonValue===null && this.value===null) {
if (this.buttonValue === null && this.value === null) {
console.error('KRadioButton: buttonValue prop is required');
}
if (this.buttonValue===null) {
if (this.buttonValue === null) {
console.warn(
"KRadioButton: 'value' prop is deprecated and will be removed in a future release. Please use 'buttonValue' instead."
);
Expand Down

0 comments on commit 9c3662c

Please sign in to comment.