From 36e07acc65dd1d51add267246cab01836cbc4a33 Mon Sep 17 00:00:00 2001 From: Knut Funkel Date: Mon, 2 Sep 2024 11:23:59 +0200 Subject: [PATCH] chore: update UI to correspond to design (#527) --- package.json | 6 +++--- src/snyk/common/constants/settings.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 2331a8dcc..94cb67f8a 100644 --- a/package.json +++ b/package.json @@ -256,10 +256,10 @@ "propertyNames": true, "properties": {} }, - "snyk.netNewVsAllIssues": { + "snyk.allIssuesVsNetNewIssues": { "type": "string", "default": "All issues", - "description": "Specifies whether to see only net new issues or all issues. Only applies to Code Security and Code Quality.", + "description": "Specifies whether to see all issues or only net new issues. Only applies to Code Security and Code Quality.", "enum": [ "All issues", "Net new issues" @@ -268,7 +268,7 @@ "Shows all issues that have been identified, including both new and existing issues.", "Shows only new issues that have been introduced in the latest scan, filtering out previously known issues." ], - "markdownDescription": "Specifies whether to see only net new issues or all issues. Only applies to Code Security and Code Quality.\n\nNote: this is an experimental feature. Please reach out to [support.snyk.io](https://support.snyk.io) for more details." + "markdownDescription": "Specifies whether to see all issues or only net new issues. Only applies to Code Security and Code Quality.\n\nNote: this is an experimental feature. Please reach out to [support.snyk.io](https://support.snyk.io) for more details." } } }, diff --git a/src/snyk/common/constants/settings.ts b/src/snyk/common/constants/settings.ts index 8588d9962..1e82f8c6a 100644 --- a/src/snyk/common/constants/settings.ts +++ b/src/snyk/common/constants/settings.ts @@ -28,4 +28,4 @@ export const TRUSTED_FOLDERS = `${CONFIGURATION_IDENTIFIER}.trustedFolders`; export const FOLDER_CONFIGS = `${CONFIGURATION_IDENTIFIER}.folderConfigs`; export const SCANNING_MODE = `${CONFIGURATION_IDENTIFIER}.scanningMode`; -export const DELTA_FINDINGS = `${CONFIGURATION_IDENTIFIER}.netNewVsAllIssues`; +export const DELTA_FINDINGS = `${CONFIGURATION_IDENTIFIER}.allIssuesVsNetNewIssues`;