Skip to content

Commit

Permalink
removed console log statements
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Jun 6, 2019
1 parent 1cd2634 commit 841ab6c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion ui/src/app/metadata/domain/domain.util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { Metadata } from './domain.type';
export const combineAllFn = (d, p) => [...p, ...d];
export const doesExistFn = (ids, selected) => ids.indexOf(selected) > -1;
export const getInCollectionFn = (entities, selectedId) => {
console.log(entities, selectedId);
return selectedId && entities[selectedId];
};
export const getEntityIdsFn = list => list.map(entity => entity.entityId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,10 @@ export class ProviderSelectComponent implements OnDestroy {
).subscribe(store);

this.provider$ = this.store.select(fromProviders.getSelectedProvider).pipe(filter(p => {
console.log(p);
return p;
}));

this.provider$.subscribe(provider => {
console.log(provider);
this.setDefinition(provider);
});
}
Expand Down

0 comments on commit 841ab6c

Please sign in to comment.