Skip to content

Commit 8d6bdb3

Browse files
authored
Merge pull request #403 from devtron-labs/fix/external-secrets
fix: hide config diff for external secret
2 parents 8e47a1c + bb70682 commit 8d6bdb3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devtron-labs/devtron-fe-common-lib",
3-
"version": "0.6.5",
3+
"version": "0.6.5-patch-1",
44
"description": "Supporting common component library",
55
"type": "module",
66
"main": "dist/index.js",

src/Shared/Components/DeploymentConfigDiff/DeploymentConfigDiff.utils.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,8 +232,8 @@ const getCodeEditorData = (
232232
const { compareToObfuscatedData, compareWithObfuscatedData } = getObfuscatedData(
233233
compareToConfigData ?? {},
234234
compareWithConfigData ?? {},
235-
compareToIsAdmin,
236-
compareWithIsAdmin,
235+
compareToIsAdmin || compareToValue?.external,
236+
compareWithIsAdmin || compareWithValue?.external,
237237
)
238238

239239
compareToCodeEditorData = {

0 commit comments

Comments
 (0)