diff --git a/src/components/ActivityListItem.vue b/src/components/ActivityListItem.vue index 4163ee3..a129284 100644 --- a/src/components/ActivityListItem.vue +++ b/src/components/ActivityListItem.vue @@ -11,7 +11,25 @@
-
+
+ + +
+

[POSTER_NAME]

+

[TIMESTAMP]

+ +
+
+
+ {{ record.giver.displayName }}
@@ -64,6 +88,7 @@ :profile-image-url="record.receiver.profileImageUrl" :class="record.receiver.known ? 'rounded-full' : 'rounded'" /> +
+ {{ record.receiver.displayName }}
@@ -85,7 +115,7 @@ {{ description }}

-

{{ record.subDescription }}

+

{{ subDescription }}

@@ -112,12 +142,11 @@ - - {{ formattedTimestamp }} - + Confirm + @@ -202,9 +231,14 @@ export default class ActivityListItem extends Vue { const claim = (this.record.fullClaim as unknown).claim || this.record.fullClaim; const amount = this.formatAmount(claim); + + return `${amount}`; + } + + get subDescription(): string { const participants = this.formatParticipantInfo(); - return `${participants}: ${amount}`; + return `${participants}`; } private displayAmount(code: string, amt: number) {