Skip to content

Commit

Permalink
refactor(mapform.vue): add class to tab content containers
Browse files Browse the repository at this point in the history
  • Loading branch information
amoncaldas committed Nov 4, 2021
1 parent e83294f commit 0c9116b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fragments/forms/map-form/MapForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
</v-tab>
</v-tabs>
<v-tabs-items v-model="activeTab" touchless>
<v-tab-item key="0" v-if="hasPlacesAndDirectionsTab" touchless>
<v-tab-item key="0" class="places-and-directions-tab-form" v-if="hasPlacesAndDirectionsTab" touchless>
<places-and-directions :active="$store.getters.mode !== constants.modes.isochrones"> </places-and-directions>
</v-tab-item>
<v-tab-item key="1" v-if="hasIsochronesTab" touchless>
<v-tab-item key="1" class="isochrones-tab-form" v-if="hasIsochronesTab" touchless>
<isochrones :active="$store.getters.mode === constants.modes.isochrones" ></isochrones>
</v-tab-item>
</v-tabs-items>
Expand Down

0 comments on commit 0c9116b

Please sign in to comment.