From f4dbebb8de51585ba9967a987665d2c379c85aa6 Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Tue, 8 Oct 2024 20:25:55 -0600 Subject: [PATCH] improve messages on invite page --- src/views/InviteOneView.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/InviteOneView.vue b/src/views/InviteOneView.vue index ae3f14c..70f0530 100644 --- a/src/views/InviteOneView.vue +++ b/src/views/InviteOneView.vue @@ -64,7 +64,7 @@ @@ -154,9 +154,9 @@ export default class InviteOneView extends Vue { group: "alert", type: "success", title: "Copied", - text: "Link for invite " + inviteId + " is copied to clipboard.", + text: "Your clipboard now contains the link for invite " + inviteId, }, - 3000, + 5000, ); } @@ -229,13 +229,13 @@ export default class InviteOneView extends Vue { ); } - deleteInvite(inviteId: string) { + deleteInvite(inviteId: string, notes: string) { this.$notify( { group: "modal", type: "confirm", title: "Delete Invite?", - text: "Are you sure you want to erase this invite? (There is no undo.)", + text: `Are you sure you want to erase the invite for "${notes}"? (There is no undo.)`, onYes: async () => { const headers = await getHeaders(this.activeDid); try {