File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
src/lib/kit/components/Inputs Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export const ObjectValueInput: ObjectIndependentInput = (props) => {
2828 if ( spec . properties ?. [ OBJECT_VALUE_PROPERTY_NAME ] ) {
2929 const childSpec = _ . cloneDeep ( spec . properties [ OBJECT_VALUE_PROPERTY_NAME ] ) ;
3030
31- childSpec . viewSpec . layout = '' ;
31+ childSpec . viewSpec . layout = 'transparent ' ;
3232
3333 return childSpec ;
3434 }
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export const Secret: ObjectIndependentInput = (props) => {
1313 if ( spec . properties ?. [ SECRET_PROPERTY_NAME ] ) {
1414 const childSpec = _ . cloneDeep ( spec . properties ?. [ SECRET_PROPERTY_NAME ] ) ;
1515
16- childSpec . viewSpec . layout = '' ;
16+ childSpec . viewSpec . layout = 'transparent ' ;
1717
1818 return childSpec ;
1919 }
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ export const TextLink: ObjectIndependentInput = (props) => {
3737 ) {
3838 const childSpec = _ . cloneDeep ( spec . properties [ TEXT_LINK_PROPERTY_NAME ] ) ;
3939
40- childSpec . viewSpec . layout = '' ;
40+ childSpec . viewSpec . layout = 'transparent ' ;
4141
4242 return childSpec ;
4343 }
You can’t perform that action at this time.
0 commit comments