Skip to content

Commit

Permalink
fix: add spaces to value selection for delta (#498)
Browse files Browse the repository at this point in the history
* fix: add spaces to value selection for delta

* fix: name in const
  • Loading branch information
ShawkyZ authored Jul 24, 2024
1 parent fe0ee87 commit a49bf50
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -284,11 +284,11 @@
},
"snyk.netNewVsKnownIssues": {
"type": "string",
"default": "KnownIssues",
"default": "Known issues",
"description": "Specifies whether to see only net new issues or known issues. Only applies to Code Security and Code Quality.",
"enum": [
"KnownIssues",
"NetNewIssues"
"Known issues",
"Net new issues"
],
"enumDescriptions": [
"Shows all issues that have been identified, including both new and existing issues.",
Expand Down
2 changes: 1 addition & 1 deletion src/snyk/common/configuration/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import {
import SecretStorageAdapter from '../vscode/secretStorage';
import { IVSCodeWorkspace } from '../vscode/workspace';

const NEWISSUES = 'NetNewIssues';
const NEWISSUES = 'Net new issues';

export type FeaturesConfiguration = {
ossEnabled: boolean | undefined;
Expand Down

0 comments on commit a49bf50

Please sign in to comment.