fix: verbiage on pop-up for giving/receiving person/project
This commit is contained in:
@@ -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";
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user