Skip to content

Commit

Permalink
chore: Fix Vue2 Syntax error for inline event handling (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmohns authored Mar 13, 2024
1 parent c2f54e6 commit d591acd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Website/ui/src/modules/Meter/Readings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
:fullscreen-mobile="true"
:months-to-show="2"
:offset-y="500"
v-on:date-one-selected="function(val) { dates.dateOne = val }"
v-on:date-two-selected="function(val) { dates.dateTwo = val }"
v-on:date-one-selected="(val) => { dates.dateOne = val }"
v-on:date-two-selected="(val) => { dates.dateTwo = val }"
@apply="getConsumptions"
></airbnb-style-datepicker>
</div>
Expand Down

0 comments on commit d591acd

Please sign in to comment.