market is not fully ready! added stall name

This commit is contained in:
Tiago Vasconcelos 2022-12-30 10:59:24 +00:00
parent 0b9672076d
commit 301cfb25d9

View file

@ -125,7 +125,7 @@
> >
</div> </div>
<div v-if="item.categories" class="text-subtitle1"> <div v-if="item.categories" class="text-subtitle1">
<q-chip v-for="cat in item.categories.split(',')" dense <q-chip v-for="(cat, i) in item.categories.split(',')" :key="i" dense
>{{cat}}</q-chip >{{cat}}</q-chip
> >
</div> </div>
@ -140,13 +140,17 @@
<q-separator></q-separator> <q-separator></q-separator>
<q-card-actions> <q-card-actions>
<span>{{ stall.find(s => s.id == item.stall).name }}</span>
<q-btn <q-btn
flat flat
class="text-weight-bold text-capitalize" class="text-weight-bold text-capitalize q-ml-auto"
dense dense
color="primary" color="primary"
type="a"
:href="'/shop/stalls/' + item.stall"
target="_blank"
> >
View details Visit shop
</q-btn> </q-btn>
</q-card-actions> </q-card-actions>
{% endraw %} {% endraw %}