in app/src/app/components/search-box/search-box.component.ts [58:64]
toggle(add: boolean, type: "limit" | "skip" | "sort" | "project") {
this.show[type] = add;
if (!add && this.params[type] !== this.defaults[type]) {
(this.params[type] as string | number) = this.defaults[type];
this.go();
}
}