@@ -65,7 +65,9 @@ export const DeploymentConfigDiffMain = ({
65
65
) : (
66
66
configItem . text
67
67
) }
68
- { index !== list . length - 1 && < span className = "cn-9 fs-13 lh-20" > /</ span > }
68
+ { ! selectorsConfig ?. hideDivider && index !== list . length - 1 && (
69
+ < span className = "cn-9 fs-13 lh-20" > /</ span >
70
+ ) }
69
71
</ Fragment >
70
72
)
71
73
}
@@ -74,13 +76,15 @@ export const DeploymentConfigDiffMain = ({
74
76
75
77
return (
76
78
< Fragment key = { configItem . id } >
77
- < div className = "dc__mxw-300 " >
79
+ < div className = "dc__mxw-200 " >
78
80
< SelectPicker < string | number , false >
79
81
{ ...selectPickerProps }
80
82
isDisabled = { isLoading || selectPickerProps ?. isDisabled }
81
83
/>
82
84
</ div >
83
- { index !== list . length - 1 && < span className = "cn-9 fs-13 lh-20" > /</ span > }
85
+ { ! selectorsConfig ?. hideDivider && index !== list . length - 1 && (
86
+ < span className = "cn-9 fs-13 lh-20" > /</ span >
87
+ ) }
84
88
</ Fragment >
85
89
)
86
90
} )
@@ -170,7 +174,7 @@ export const DeploymentConfigDiffMain = ({
170
174
} )
171
175
172
176
return (
173
- < div className = "bcn-0 deployment-config-diff__main-top" >
177
+ < div className = "bcn-0 deployment-config-diff__main-top flexbox-col min-h-100 " >
174
178
< div className = "dc__border-bottom-n1 flexbox dc__align-items-center dc__position-sticky dc__top-0 bcn-0 w-100 dc__zi-11" >
175
179
< div className = "flexbox dc__align-items-center p-12 dc__gap-8 deployment-config-diff__main-top__header" >
176
180
< p className = "m-0 cn-9 fs-13 lh-20" > { headerText } </ p >
@@ -183,7 +187,7 @@ export const DeploymentConfigDiffMain = ({
183
187
{ renderSortButton ( ) }
184
188
</ div >
185
189
</ div >
186
- < div className = "deployment-config-diff__main-content" >
190
+ < div className = "deployment-config-diff__main-content dc__overflow-y-auto " >
187
191
{ errorConfig ?. error && < ErrorScreenManager code = { errorConfig . code } reload = { errorConfig . reload } /> }
188
192
{ ! errorConfig ?. error &&
189
193
( isLoading ? (
0 commit comments