Skip to content

Commit

Permalink
Revert change to watt-filter-chip (#3602)
Browse files Browse the repository at this point in the history
  • Loading branch information
ManBearTM authored Oct 3, 2024
1 parent acf62dd commit 04e676e
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ export class WattFilterChipComponent<T = string> {
isFirstRender = useIsFirstRender();

onChange(input: HTMLInputElement): void {
const value = this.choice ? input.value : input.checked;
this.selectionChange.emit(value as T);
// TODO: Reverted because of issue, fix later
// const value = this.choice ? input.value : input.checked;
this.selectionChange.emit(input.value as T);
}
}

0 comments on commit 04e676e

Please sign in to comment.