Skip to content

Commit

Permalink
fix(Map): fix window sliding on swipe. ref #695 #774 #773
Browse files Browse the repository at this point in the history
  • Loading branch information
raphodn committed Aug 22, 2024
1 parent be89214 commit 24c12fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/views/CountryCityDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</v-col>
</v-row>

<v-window v-model="currentDisplay">
<v-window v-model="currentDisplay" disabled>
<v-window-item value="list">
<v-row class="mt-0 mb-1">
<v-col v-for="location in countryCityLocationList" :key="location" cols="12" sm="6" md="4">
Expand Down
2 changes: 1 addition & 1 deletion src/views/CountryDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</v-col>
</v-row>

<v-window v-model="currentDisplay">
<v-window v-model="currentDisplay" disabled>
<v-window-item value="list">
<v-row class="mt-0 mb-1">
<v-col v-for="location in countryLocationList" :key="location" cols="12" sm="6" md="4">
Expand Down
2 changes: 1 addition & 1 deletion src/views/ProductDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
</v-col>
</v-row>

<v-window v-model="currentDisplay">
<v-window v-model="currentDisplay" disabled>
<v-window-item value="list">
<v-row class="mt-0 mb-1">
<v-col v-for="price in productPriceList" :key="price" cols="12" sm="6" md="4">
Expand Down

0 comments on commit 24c12fa

Please sign in to comment.