add Confirm Gift screen for simpler confirmation

This commit is contained in:
2024-06-20 20:52:26 -06:00
parent 79d93994c2
commit 230773a917
11 changed files with 992 additions and 34 deletions

View File

@@ -161,7 +161,7 @@
<EntityIcon
:contact="contact"
:iconSize="64"
class="mx-auto border border-slate-300 rounded-md mb-1"
class="mx-auto border border-slate-300 rounded-md mb-1 cursor-pointer"
/>
<h3
class="text-xs font-medium text-ellipsis whitespace-nowrap overflow-hidden"
@@ -795,7 +795,7 @@ export default class ProjectViewView extends Vue {
onClickAllContactsGifting() {
localStorage.setItem("projectId", this.projectId);
const route = {
name: "contact-gives",
name: "contact-gift",
};
this.$router.push(route);
}