Explorar el Código

Changes reset to remove keys

main
Eric Amodio hace 7 años
padre
commit
d111fb033e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/commands/resetSuppressedWarnings.ts

+ 1
- 1
src/commands/resetSuppressedWarnings.ts Ver fichero

@ -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);
}
}
}

Cargando…
Cancelar
Guardar