fix: verbiage on pop-up for giving/receiving person/project

This commit is contained in:
2025-12-20 19:09:47 -07:00
parent b864f1632d
commit e7ca2bb791

View File

@@ -165,15 +165,19 @@ export default class EntitySelectionStep extends Vue {
*/
get stepLabel(): string {
if (this.stepType === "recipient") {
return "Choose who received the gift";
} else if (this.stepType === "giver") {
if (this.shouldShowProjects) {
return "Choose a project benefitted from";
return "Choose recipient project";
} else {
return "Choose a person received from";
return "Choose recipient person";
}
} else {
// this.stepType === "giver"
if (this.shouldShowProjects) {
return "Choose giving project";
} else {
return "Choose giving person";
}
}
return "Choose entity";
}
/**