Skip to content

Commit

Permalink
Fixed linter issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
itsJohnnyGrid committed Feb 11, 2025
1 parent 91c6e2b commit 2b27173
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/ui.dropdown-list/UDropdownList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ const {
v-bind="isSelectedOption(option) ? optionActiveAttrs : optionAttrs"
:data-test="getDataTest('option')"
:class="optionHighlight(index, option)"
@click="select(option), onClickOption(option)"
@click="(select(option), onClickOption(option))"
@mouseenter.self="pointerSet(index)"
>
<!--
Expand Down
8 changes: 4 additions & 4 deletions src/ui.form-date-picker-range/UDatePickerRangePeriodMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ function getDatePeriodState(date: DatePeriodRange) {
:disabled="isDatePeriodOutOfRange(date)"
v-bind="attrs.periodDateCurrentSelectedAttrs.value"
:label="String(date.title)"
@click="selectDate(date), toggleMenu()"
@click="(selectDate(date), toggleMenu())"
/>

<UButton
Expand All @@ -278,7 +278,7 @@ function getDatePeriodState(date: DatePeriodRange) {
:disabled="isDatePeriodOutOfRange(date)"
v-bind="attrs.periodDateSelectedAttrs.value"
:label="String(date.title)"
@click="selectDate(date), toggleMenu()"
@click="(selectDate(date), toggleMenu())"
/>

<UButton
Expand All @@ -290,7 +290,7 @@ function getDatePeriodState(date: DatePeriodRange) {
:disabled="isDatePeriodOutOfRange(date)"
v-bind="attrs.periodDateCurrentAttrs.value"
:label="String(date.title)"
@click="selectDate(date), toggleMenu()"
@click="(selectDate(date), toggleMenu())"
/>

<UButton
Expand All @@ -301,7 +301,7 @@ function getDatePeriodState(date: DatePeriodRange) {
:disabled="isDatePeriodOutOfRange(date)"
v-bind="attrs.periodDateAttrs.value"
:label="String(date.title)"
@click="selectDate(date), toggleMenu()"
@click="(selectDate(date), toggleMenu())"
/>
</template>
</div>
Expand Down

0 comments on commit 2b27173

Please sign in to comment.