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 {
setTimeout(() => {
this.stepFormGroup.controls['applicationName'].valueChanges.pipe(
debounceTime(500),
debounceTime(1000),
tap(() => this.saveParameter('applicationName'))
).subscribe();
this.stepFormGroup.controls['homepage_message'].valueChanges.pipe(
debounceTime(500),
debounceTime(1000),
tap(() => this.saveParameter('homepage_message'))
).subscribe();
this.stepFormGroup.controls['loginpage_message'].valueChanges.pipe(
debounceTime(500),
debounceTime(1000),
tap(() => this.saveParameter('loginpage_message'))
).subscribe();
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