mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
[ADF-2346] fixed the people list task style (#3001)
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { UserProcessModel, TranslationService } from '@alfresco/adf-core';
|
||||
import { UserProcessModel, TranslationService, PeopleProcessService } from '@alfresco/adf-core';
|
||||
import { Component, EventEmitter, Input, Output, ViewEncapsulation } from '@angular/core';
|
||||
import { FormControl } from '@angular/forms';
|
||||
import { debounceTime } from 'rxjs/operators';
|
||||
@@ -47,7 +47,8 @@ export class PeopleSearchFieldComponent {
|
||||
|
||||
defaultPlaceholder = 'ADF_TASK_LIST.PEOPLE.SEARCH_USER';
|
||||
|
||||
constructor(private translationService: TranslationService) {
|
||||
constructor(public peopleProcessService: PeopleProcessService,
|
||||
private translationService: TranslationService) {
|
||||
this.users$ = this.searchUser.valueChanges
|
||||
.pipe(debounceTime(200))
|
||||
.switchMap((searchWord: string) => {
|
||||
|
Reference in New Issue
Block a user