Skip to content

Commit

Permalink
Merge branch 'master' into bugfix/SHIBUI-668
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Aug 10, 2018
2 parents a7274db + 04c67b3 commit 1a87168
Show file tree
Hide file tree
Showing 18 changed files with 46 additions and 324 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div class="col-md-12">
<span class="display-6">
<i class="fa fa-fw fa-gears"></i>
<ng-container i18n="@@label--new-filter">&nbsp; Edit EntityAttributesFilter - {{ filter.name }}</ng-container>
<ng-container i18n="@@label--new-filter">&nbsp; Edit EntityAttributesFilter</ng-container>
</span>
</div>
</div>
Expand Down
4 changes: 3 additions & 1 deletion ui/src/app/metadata/provider/effect/collection.effect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Store } from '@ngrx/store';
import { Router } from '@angular/router';

import { of } from 'rxjs';
import { map, catchError, switchMap, tap, withLatestFrom } from 'rxjs/operators';
import { map, catchError, switchMap, tap, withLatestFrom, debounceTime } from 'rxjs/operators';
import {
ProviderCollectionActionsUnion,
ProviderCollectionActionTypes,
Expand All @@ -25,6 +25,7 @@ import { MetadataProviderService } from '../../domain/service/provider.service';
import * as fromProvider from '../reducer';
import * as fromRoot from '../../../app.reducer';
import { AddFilterSuccess, FilterCollectionActionTypes } from '../../filter/action/collection.action';
import { debounce } from '../../../../../node_modules/rxjs-compat/operator/debounce';


/* istanbul ignore next */
Expand All @@ -48,6 +49,7 @@ export class CollectionEffects {
selectProviders$ = this.actions$.pipe(
ofType<SelectProviderRequest>(ProviderCollectionActionTypes.SELECT_PROVIDER_REQUEST),
map(action => action.payload),
debounceTime(500),
switchMap(id =>
this.providerService
.find(id)
Expand Down
Loading

0 comments on commit 1a87168

Please sign in to comment.