Skip to content

Commit

Permalink
PriceFooterRow: remove User & Created info
Browse files Browse the repository at this point in the history
  • Loading branch information
raphodn committed Sep 22, 2024
1 parent 208a10d commit a468742
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/components/PriceFooterRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@
<v-row style="margin-top:0;">
<v-col cols="11">
<LocationChip v-if="!hidePriceLocation" class="mr-1" :location="price.location" :locationId="price.location_id" :readonly="readonly" />
<UserChip class="mr-1" :username="price.owner" :readonly="readonly" />
<DateChip class="mr-1" :date="price.date" :readonly="readonly" />
<ProofChip v-if="price.proof && !hidePriceProof" class="mr-1" :proof="price.proof" />
<RelativeDateTimeChip :dateTime="price.created" />
</v-col>
</v-row>

Expand All @@ -18,10 +16,8 @@ import { defineAsyncComponent } from 'vue'
export default {
components: {
LocationChip: defineAsyncComponent(() => import('../components/LocationChip.vue')),
UserChip: defineAsyncComponent(() => import('../components/UserChip.vue')),
DateChip: defineAsyncComponent(() => import('../components/DateChip.vue')),
ProofChip: defineAsyncComponent(() => import('../components/ProofChip.vue')),
RelativeDateTimeChip: defineAsyncComponent(() => import('../components/RelativeDateTimeChip.vue')),
PriceActionMenuButton: defineAsyncComponent(() => import('../components/PriceActionMenuButton.vue')),
},
props: {
Expand Down

0 comments on commit a468742

Please sign in to comment.