Trying to get the checkboxlogic right

This commit is contained in:
Pieter Vander Vennet 2020-09-10 21:06:56 +02:00
parent c944156d87
commit e0f2f70c2e
7 changed files with 113 additions and 97 deletions

View file

@ -26,8 +26,6 @@ export class FixedInputElement<T> extends InputElement<T> {
}
IsValid(t: T): boolean {
console.log("Comparing ",t, "with", this.value.data);
return this._comparator(t, this.value.data);
}