提交 86cf769a 编写于 作者: V Volodymyr 提交者: Sandeep Somavarapu

Check for searchBox input to contain '@installed'

上级 7335edca
......@@ -435,7 +435,11 @@ export class ExtensionsViewlet extends ViewContainerViewlet implements IExtensio
protected saveState(): void {
const value = this.searchBox.getValue();
this.searchViewletState['query.value'] = value;
if (value.indexOf('@installed') >= 0) {
this.searchViewletState['query.value'] = value;
} else {
this.searchViewletState['query.value'] = '';
}
super.saveState();
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册