提交 ada3874b 编写于 作者: R rebornix

Fix #26106. Make sure arrary key is string

上级 0f977175
......@@ -73,7 +73,9 @@ export class ViewModelDecorations implements IDisposable {
let removedDecorations = e.removedDecorations;
for (let i = 0, len = removedDecorations.length; i < len; i++) {
let removedDecoration = removedDecorations[i];
delete this._decorationsCache[removedDecoration];
if (removedDecoration !== null && removedDecoration !== undefined) {
delete this._decorationsCache[removedDecoration];
}
}
this._clearCachedModelDecorationsResolver();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册