Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Dec 12, 2024
1 parent 4182346 commit aea8b42
Show file tree
Hide file tree
Showing 4 changed files with 78 additions and 61 deletions.
1 change: 0 additions & 1 deletion components/lib/calendar/Calendar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,6 @@ export default {
return currentDate >= startDate && currentDate <= endDate;
}
} else {
return this.modelValue.getMonth() === month && this.modelValue.getFullYear() === this.currentYear;
}
Expand Down
4 changes: 2 additions & 2 deletions components/lib/inputnumber/InputNumber.vue
Original file line number Diff line number Diff line change
Expand Up @@ -541,8 +541,8 @@ export default {
const isMinusSign = this.isMinusSign(char);
if (this.locale === 'fr-FR' && (event.code === 'Comma' || event.code === 'NumpadDecimal') && !isDecimalSign) {
isDecimalSign = true
char = decimalSign
isDecimalSign = true;
char = decimalSign;
}
if (event.code !== 'Enter') {
Expand Down
2 changes: 1 addition & 1 deletion components/lib/tree/TreeNode.vue
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export default {
if (this.isCheckboxSelectionMode()) {
if (this.node.selectable != false) {
this.toggleCheckbox();
}
}
} else {
this.$emit('node-click', {
originalEvent: event,
Expand Down
Loading

0 comments on commit aea8b42

Please sign in to comment.