@@ -52,7 +52,7 @@ export const renderConfigMapOutput = (configMap) => {
52
52
< div >
53
53
#Message: < br />
54
54
< br />
55
- { configMap ? .message ?. map ( ( elm ) => {
55
+ { configMap . message ?. map ( ( elm ) => {
56
56
return (
57
57
< >
58
58
{ elm }
@@ -67,11 +67,11 @@ export const renderConfigMapOutput = (configMap) => {
67
67
#Failed Operations:
68
68
< br />
69
69
< br />
70
- { configMap ? .failure == null ? (
70
+ { configMap . failure == null ? (
71
71
< > No Result Found</ >
72
72
) : (
73
73
< >
74
- { configMap ? .failure . map ( ( elm ) => {
74
+ { configMap . failure . map ( ( elm ) => {
75
75
return renderCmAndSecretResponseForOneApp ( elm )
76
76
} ) }
77
77
</ >
@@ -82,11 +82,11 @@ export const renderConfigMapOutput = (configMap) => {
82
82
< div >
83
83
#Successful Operations: < br />
84
84
< br />
85
- { configMap ? .successful == null ? (
85
+ { configMap . successful == null ? (
86
86
< > No Result Found</ >
87
87
) : (
88
88
< >
89
- { configMap ? .successful . map ( ( elm ) => {
89
+ { configMap . successful . map ( ( elm ) => {
90
90
return renderCmAndSecretResponseForOneApp ( elm )
91
91
} ) }
92
92
</ >
@@ -133,7 +133,7 @@ export const renderDeploymentTemplateOutput = (deploymentTemplate) => {
133
133
< div >
134
134
#Message: < br />
135
135
< br />
136
- { deploymentTemplate ? .message ?. map ( ( elm ) => {
136
+ { deploymentTemplate . message ?. map ( ( elm ) => {
137
137
return (
138
138
< div >
139
139
{ elm }
@@ -148,11 +148,11 @@ export const renderDeploymentTemplateOutput = (deploymentTemplate) => {
148
148
#Failed Operations:
149
149
< br />
150
150
< br />
151
- { deploymentTemplate ? .failure === null ? (
151
+ { deploymentTemplate . failure === null ? (
152
152
< > No Result Found</ >
153
153
) : (
154
154
< >
155
- { deploymentTemplate ? .failure . map ( ( elm ) => {
155
+ { deploymentTemplate . failure . map ( ( elm ) => {
156
156
return renderDTResponseForOneApp ( elm )
157
157
} ) }
158
158
</ >
@@ -164,11 +164,11 @@ export const renderDeploymentTemplateOutput = (deploymentTemplate) => {
164
164
< div >
165
165
#Successful Operations: < br />
166
166
< br />
167
- { deploymentTemplate ? .successful == null ? (
167
+ { deploymentTemplate . successful == null ? (
168
168
< > No Result Found</ >
169
169
) : (
170
170
< >
171
- { deploymentTemplate ? .successful . map ( ( elm ) => {
171
+ { deploymentTemplate . successful . map ( ( elm ) => {
172
172
return renderDTResponseForOneApp ( elm )
173
173
} ) }
174
174
</ >
@@ -189,7 +189,7 @@ export const renderSecretOutput = (secret) => {
189
189
< div >
190
190
#Message: < br />
191
191
< br />
192
- { secret ? .message ?. map ( ( elm ) => {
192
+ { secret . message ?. map ( ( elm ) => {
193
193
return (
194
194
< >
195
195
{ elm }
@@ -204,11 +204,11 @@ export const renderSecretOutput = (secret) => {
204
204
#Failed Operations:
205
205
< br />
206
206
< br />
207
- { secret ? .failure == null ? (
207
+ { secret . failure == null ? (
208
208
< > No Result Found</ >
209
209
) : (
210
210
< >
211
- { secret ? .failure . map ( ( elm ) => {
211
+ { secret . failure . map ( ( elm ) => {
212
212
return renderCmAndSecretResponseForOneApp ( elm )
213
213
} ) }
214
214
</ >
@@ -220,11 +220,11 @@ export const renderSecretOutput = (secret) => {
220
220
< div >
221
221
#Successful Operations: < br />
222
222
< br />
223
- { secret ? .successful == null ? (
223
+ { secret . successful == null ? (
224
224
< > No Result Found</ >
225
225
) : (
226
226
< >
227
- { secret ? .successful . map ( ( elm ) => {
227
+ { secret . successful . map ( ( elm ) => {
228
228
return renderCmAndSecretResponseForOneApp ( elm )
229
229
} ) }
230
230
</ >
0 commit comments