|
|
@@ -252,17 +252,21 @@
|
|
|
</v-card-text>
|
|
|
</div>
|
|
|
|
|
|
- <v-chip-group
|
|
|
+ <div
|
|
|
v-if="structure.practices"
|
|
|
- column
|
|
|
- active-class="primary--text"
|
|
|
- class="d-flex flex-row align-start"
|
|
|
+ class="d-grid flex-wrap"
|
|
|
:style="listview ? 'width: 25%;min-width: 25%;' : ''"
|
|
|
>
|
|
|
- <v-chip v-for="practice in structure.practices" :key="practice" outlined small pill>
|
|
|
+ <v-chip
|
|
|
+ v-for="practice in structure.practices"
|
|
|
+ :key="practice"
|
|
|
+ class="ma-1"
|
|
|
+ label
|
|
|
+ small
|
|
|
+ >
|
|
|
{{ $t(practice) }}
|
|
|
</v-chip>
|
|
|
- </v-chip-group>
|
|
|
+ </div>
|
|
|
|
|
|
<span v-if="mapview" class="flex-fill" />
|
|
|
|