diff --git a/playwright.config-local.ts b/playwright.config-local.ts index e2d63465..d9c6afc4 100644 --- a/playwright.config-local.ts +++ b/playwright.config-local.ts @@ -21,7 +21,7 @@ export default defineConfig({ /* Retry on CI only */ retries: process.env.CI ? 2 : 0, /* Opt out of parallel tests on CI. */ - workers: 4, + workers: 3, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ reporter: [ ['list'], diff --git a/src/components/EntitySelectionStep.vue b/src/components/EntitySelectionStep.vue index c6f0f197..c1729b78 100644 --- a/src/components/EntitySelectionStep.vue +++ b/src/components/EntitySelectionStep.vue @@ -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"; } /** diff --git a/src/components/EntitySummaryButton.vue b/src/components/EntitySummaryButton.vue index 80890eff..68a2baf4 100644 --- a/src/components/EntitySummaryButton.vue +++ b/src/components/EntitySummaryButton.vue @@ -1,16 +1,6 @@ -/** * EntitySummaryButton.vue - Displays selected entity with edit capability * -* Extracted from GiftedDialog.vue to handle entity summary display in the gift * -details step with edit functionality. * * Features: * - Shows entity avatar -(person or project) * - Displays entity name and role label * - Handles editable -vs locked states * - Function props for parent control over edit behavior * - -Supports both person and project entity types * - Template streamlined with -computed CSS properties * * @author Matthew Raymer */ +/* EntitySummaryButton.vue - Displays selected entity with edit capability */