Browse Source

add better verbiage when an offer has both description and amount

split_build_process
Trent Larson 3 months ago
parent
commit
fcec9e53f5
  1. 3
      src/views/NewActivityView.vue

3
src/views/NewActivityView.vue

@ -35,7 +35,8 @@
didInfo(offer.offeredByDid, activeDid, allMyDids, allContacts)
}}</span>
offers
<span v-if="offer.objectDescription">{{ offer.objectDescription }}</span>
<span v-if="offer.objectDescription">{{ offer.objectDescription }}
</span>{{ offer.objectDescription && offer.amount ? ", and " : "" }}
<span v-if="offer.amount">{{
displayAmount(offer.unit, offer.amount)
}}</span>

Loading…
Cancel
Save