How change this to strict comprassion ==?
if (this.Name) {
conditions.push(this.filterName);
}
filterName(item) {
return item.name.toString().includes(this.Name);
}
just compare two names
filterName(item) {
return item.name.toString() === this.Name;
}