Sfoglia il codice sorgente

Changes reset to remove keys

main
Eric Amodio 7 anni fa
parent
commit
d111fb033e
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      src/commands/resetSuppressedWarnings.ts

+ 1
- 1
src/commands/resetSuppressedWarnings.ts Vedi File

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

Caricamento…
Annulla
Salva