提交 90a7196d 编写于 作者: M Martin Aeschlimann

hex.charCodeAt is not a function. Fixes #25372

上级 9234a7c9
......@@ -547,7 +547,8 @@ export class WorkbenchThemeService implements IWorkbenchThemeService {
}
public getCustomColor(id: ColorIdentifier) {
if (this.colorCustomizations && this.colorCustomizations.hasOwnProperty(id)) {
let color = this.colorCustomizations[id];
if (typeof color === 'string') {
return Color.fromHex(this.colorCustomizations[id], null);
}
return null;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册