remove message confusion, add project name during give-details

This commit is contained in:
2024-04-21 20:31:57 -06:00
parent 4e877c15f6
commit 1df2d3ed05
8 changed files with 58 additions and 41 deletions

View File

@@ -168,7 +168,7 @@
</div>
</div>
<GiftedDialog ref="customDialog" message="Received from" />
<GiftedDialog ref="customDialog" />
<GiftedPrompts ref="giftedPrompts" />
<FeedFilters ref="feedFilters" />
@@ -719,10 +719,15 @@ export default class HomeView extends Vue {
}
openDialog(giver?: GiverReceiverInputInfo) {
(this.$refs.customDialog as GiftedDialog).open(giver, {
did: this.activeDid,
name: "you",
});
(this.$refs.customDialog as GiftedDialog).open(
giver,
{
did: this.activeDid,
name: "you",
},
undefined,
"Given by " + (giver?.name || "someone not named"),
);
}
openGiftedPrompts() {