File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Components/CICDHistory/DeploymentHistoryConfigDiff Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,11 @@ export const DeploymentHistoryConfigDiff = ({
87
87
}
88
88
89
89
secretsData . value . forEach ( ( data , index ) => {
90
- if ( configDatas [ index ] . status !== 'fulfilled' || ! configDatas [ index ] . value ) {
90
+ if (
91
+ configDatas [ index ] . status !== 'fulfilled' ||
92
+ ! configDatas [ index ] . value ||
93
+ configDatas [ index ] . value . result . isAppAdmin
94
+ ) {
91
95
return
92
96
}
93
97
configDatas [ index ] . value . result . secretsData = data . secretsData
Original file line number Diff line number Diff line change @@ -84,8 +84,7 @@ export const getCompareSecretsData = async (
84
84
> )
85
85
86
86
comparisonItemResponse . forEach ( ( resp ) => {
87
- // FIXME: prakash said he will fix this
88
- results [ resp . index ?? 0 ] = resp
87
+ results [ resp . index ] = resp
89
88
} )
90
89
91
90
return results
You can’t perform that action at this time.
0 commit comments