Skip to content

Commit

Permalink
refactor(place-input): add class name for place suggestion element
Browse files Browse the repository at this point in the history
  • Loading branch information
amoncaldas committed Oct 11, 2021
1 parent 111843b commit 0cd3d00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fragments/forms/place-input/PlaceInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
</div>
</v-flex>
</v-layout>
<v-list-tile @click.stop="selectSuggestion(placeSuggested)" :key="placeSuggested.id" v-for='placeSuggested in placeSuggestions'
<v-list-tile class="place-suggestion" @click.stop="selectSuggestion(placeSuggested)" :key="placeSuggested.id" v-for='placeSuggested in placeSuggestions'
:title="placeSuggested.placeName.trim()">
<v-list-tile-action class="hidden-sm-and-down">
<v-icon v-if="placeSuggested.properties.layer === 'locality' || placeSuggested.properties.layer === 'city' || placeSuggested.properties.layer === 'county'">location_city</v-icon>
Expand Down

0 comments on commit 0cd3d00

Please sign in to comment.