Skip to content
Snippets Groups Projects
Verified Commit d4c916e0 authored by Damien's avatar Damien
Browse files

FEAT #14455 TIME 0:20 Fix debounce time

parent cf51399b
No related branches found
No related tags found
No related merge requests found
...@@ -65,18 +65,18 @@ export class ParametersCustomizationComponent implements OnInit, OnDestroy { ...@@ -65,18 +65,18 @@ export class ParametersCustomizationComponent implements OnInit, OnDestroy {
setTimeout(() => { setTimeout(() => {
this.stepFormGroup.controls['applicationName'].valueChanges.pipe( this.stepFormGroup.controls['applicationName'].valueChanges.pipe(
debounceTime(500), debounceTime(1000),
tap(() => this.saveParameter('applicationName')) tap(() => this.saveParameter('applicationName'))
).subscribe(); ).subscribe();
this.stepFormGroup.controls['homepage_message'].valueChanges.pipe( this.stepFormGroup.controls['homepage_message'].valueChanges.pipe(
debounceTime(500), debounceTime(1000),
tap(() => this.saveParameter('homepage_message')) tap(() => this.saveParameter('homepage_message'))
).subscribe(); ).subscribe();
this.stepFormGroup.controls['loginpage_message'].valueChanges.pipe( this.stepFormGroup.controls['loginpage_message'].valueChanges.pipe(
debounceTime(500), debounceTime(1000),
tap(() => this.saveParameter('loginpage_message')) tap(() => this.saveParameter('loginpage_message'))
).subscribe(); ).subscribe();
this.initMce(); this.initMce();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment