Browse Source

#3955 Fix to use aParams instead of this

pull/4117/head
Brandon Wortman 8 months ago
parent
commit
fd31d2a01a
No known key found for this signature in database GPG Key ID: C63DB7DA05AEC086
  1. 2
      apps/client/src/app/core/notification/prompt-dialog/prompt-dialog.component.ts

2
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;
}
}

Loading…
Cancel
Save