[ACA-4344] - increase debounce time on process filters (#6805)

* [ACA-4344] - increase debounce time on process filters

* Put back S3 for smartrunner cache

* Remove useless npm caching

Co-authored-by: Silviu Constantin Popa <silviucpopa@L3700101120.ness.com>
Co-authored-by: Andras Popovics <popovics@ndras.hu>
This commit is contained in:
Silviu Popa
2021-03-11 00:06:45 +02:00
committed by GitHub
parent c58366d08e
commit 335aa4861e
5 changed files with 15 additions and 34 deletions

View File

@@ -235,7 +235,7 @@ export class EditProcessFilterCloudComponent implements OnInit, OnChanges, OnDes
this.filterChangeSub = this.editProcessFilterForm.valueChanges
.pipe(
debounceTime(200),
debounceTime(500),
filter(() => this.isFormValid()),
takeUntil(this.onDestroy$)
)