浏览代码

Changes reset to remove keys

main
Eric Amodio 7 年前
父节点
当前提交
d111fb033e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/commands/resetSuppressedWarnings.ts

+ 1
- 1
src/commands/resetSuppressedWarnings.ts 查看文件

@ -12,7 +12,7 @@ export class ResetSuppressedWarningsCommand extends Command {
async execute() {
for (const key of Objects.values(SuppressedKeys)) {
await this.context.globalState.update(key, false);
await this.context.globalState.update(key, undefined);
}
}
}

正在加载...
取消
保存