Skip to content

Commit

Permalink
refactor(slidercombo.vue): add css class to root element and remove u…
Browse files Browse the repository at this point in the history
…nused watch parameter
  • Loading branch information
amoncaldas committed Jan 11, 2022
1 parent 36b36d9 commit 48ee0e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div>
<div class="slider-combo">
<p>{{label}} (<b>{{filter.min}}</b> - <b>{{filterMax}}</b>)</p>
<v-layout>
<v-flex xs4 sm3>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default {
},
watch: {
filter: {
handler: function (newFilter, oldFilter) {
handler: function (newFilter) {
if (newFilter.value !== this.localModel) {
this.setLocalData()
}
Expand Down

0 comments on commit 48ee0e2

Please sign in to comment.