Skip to content

Commit

Permalink
fix: removed unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriocomo committed Jul 30, 2024
1 parent 0ba3033 commit ebbf885
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ export class TransferStore<T> {

private readonly targetItems = this._state.pipe(map(state => state.current.target));

private get state() {
return this._state.value;
}

readonly valueChanged = this._state.pipe(
map(state => state.current.target),
distinctUntilChanged()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,6 @@ export class ItTransferComponent<T = any> extends ItAbstractFormComponent<T> imp
this.onStoreValueChanged();
}

buttonHandler(event: Event) {
console.log(event);
event.preventDefault();
}

/**
* Transfer button click handler
*/
Expand Down

0 comments on commit ebbf885

Please sign in to comment.