Parcourir la source

Changes reset to remove keys

main
Eric Amodio il y a 7 ans
Parent
révision
d111fb033e
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/commands/resetSuppressedWarnings.ts

+ 1
- 1
src/commands/resetSuppressedWarnings.ts Voir le fichier

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

Chargement…
Annuler
Enregistrer