feat: add support for searching within a channel (#262)

* feat(Channel): add support for searching

* dev: add channel search test

* chore: update docs
This commit is contained in:
LuanRT
2022-12-26 18:56:37 -03:00
committed by GitHub
parent fb2e237284
commit 2b3642ba63
5 changed files with 31 additions and 8 deletions

View File

@@ -15,7 +15,7 @@ class ExpandableTab extends YTNode {
this.title = data.title;
this.endpoint = new NavigationEndpoint(data.endpoint);
this.selected = data.selected; // If this.selected then we may have content else we do not
this.content = data.content ? Parser.parse(data.content) : null;
this.content = data.content ? Parser.parseItem(data.content) : null;
}
}