Skip to content

Commit

Permalink
SHIBUI-1576 cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
rmathis committed Nov 5, 2019
1 parent 31a73f4 commit b380c70
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component } from '@angular/core';
import { Observable, of } from 'rxjs';
import { Observable } from 'rxjs';
import { Store } from '@ngrx/store';
import {
ConfigurationState,
Expand Down Expand Up @@ -36,9 +36,7 @@ export class RestoreEditComponent {

constructor(
private store: Store<ConfigurationState>
) {
// this.status$.subscribe(console.log);
}
) {}

save() {
this.store.dispatch(new RestoreVersionRequest());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,7 @@ export class ProviderEditStepComponent implements OnDestroy {
});
}),
filter(({ model, definition }) => definition && model),
map(({ model, definition }) => {
// console.log(model, definition.formatter(model));
return definition ? definition.formatter(model) : {};
})
map(({ model, definition }) => definition ? definition.formatter(model) : {})
);

this.valueChangeEmitted$.pipe(
Expand Down

0 comments on commit b380c70

Please sign in to comment.