removeFromFilteredChildren()

in sample/frontend/agr-lib/src/lib/types/row.ts [26:30]


  removeFromFilteredChildren(){
    if (this.parent){
      this.parent.filteredChildren.splice(this.parent.filteredChildren.indexOf(this),1);
    }
  }