diff --git a/project.task.yaml b/project.task.yaml index a102743..034c3e9 100644 --- a/project.task.yaml +++ b/project.task.yaml @@ -2,7 +2,6 @@ tasks: - Jason reported that turning notifications on from the help screen did not stay. iPhone -- check that 'show more contacts' from the contact-give-list on the project screen includes project ID - supply the projectId to the OfferDialog just like we do with the offerId - the confirm button on each give on the ProjectViewView page doesn't have all the context of the ClaimView page, so it can show sometimes inappropriately; consider consolidation diff --git a/src/views/ContactGiftingView.vue b/src/views/ContactGiftingView.vue index 475f56e..c018d58 100644 --- a/src/views/ContactGiftingView.vue +++ b/src/views/ContactGiftingView.vue @@ -20,12 +20,13 @@ - Show More Contacts… - + @@ -709,6 +709,14 @@ export default class ProjectViewView extends Vue { (this.$refs.customOfferDialog as OfferDialog).open(); } + onClickAllContactsGifting() { + localStorage.setItem("projectId", this.projectId); + const route = { + name: "contact-gives", + }; + this.$router.push(route); + } + onClickLoadClaim(jwtId: string) { const route = { path: "/claim/" + encodeURIComponent(jwtId),