提交 1e544229 编写于 作者: S SteVen Batten

don't update overrides if not provided

上级 08aa77ee
......@@ -850,7 +850,10 @@ export class WorkbenchAsyncDataTree<TInput, T, TFilterData = void> extends Async
updateOptions(options: IWorkbenchAsyncDataTreeOptions<T, TFilterData> = {}): void {
super.updateOptions(options);
this.internals.updateStyleOverrides(options.overrideStyles);
if (options.overrideStyles) {
this.internals.updateStyleOverrides(options.overrideStyles);
}
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册