Skip to content

Commit b153e17

Browse files
committed
minor tweak
1 parent a7926ab commit b153e17

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

client/packages/lowcoder/src/comps/comps/selectInputComp/stepControl.tsx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -232,11 +232,6 @@ let StepControlBasicComp = (function () {
232232
{["layout", "both"].includes(useContext(EditorContext).editorModeStatus) && (
233233
<Section name={sectionNames.layout}>
234234
{children.autoHeight.getPropertyView()}
235-
{!children.autoHeight.getView() && (
236-
children.showVerticalScrollbar.propertyView({
237-
label: trans("prop.showVerticalScrollbar"),
238-
})
239-
)}
240235
{children.size.propertyView({
241236
label: trans("step.size"),
242237
radioButton: true,
@@ -261,6 +256,9 @@ let StepControlBasicComp = (function () {
261256
{ children.displayType.getView() != "inline" && !children.showDots.getView() && (
262257
children.showIcons.propertyView({label: trans("step.showIcons")}
263258
))}
259+
{!children.autoHeight.getView() && (
260+
children.showVerticalScrollbar.propertyView({label: trans("prop.showVerticalScrollbar")})
261+
)}
264262
</Section>
265263
)}
266264

0 commit comments

Comments
 (0)