From fd31d2a01aa03c268c2109e363a8690703dd4b0d Mon Sep 17 00:00:00 2001 From: Brandon Wortman Date: Wed, 18 Dec 2024 17:54:12 -0500 Subject: [PATCH] #3955 Fix to use aParams instead of this --- .../core/notification/prompt-dialog/prompt-dialog.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/app/core/notification/prompt-dialog/prompt-dialog.component.ts b/apps/client/src/app/core/notification/prompt-dialog/prompt-dialog.component.ts index 86995abb9..3940fc162 100644 --- a/apps/client/src/app/core/notification/prompt-dialog/prompt-dialog.component.ts +++ b/apps/client/src/app/core/notification/prompt-dialog/prompt-dialog.component.ts @@ -41,6 +41,6 @@ export class GfPromptDialogComponent { this.discardLabel = aParams.discardLabel; this.title = aParams.title; this.valueLabel = aParams.valueLabel; - this.value = this.defaultValue; + this.value = aParams.defaultValue; } }