Skip to content

Commit

Permalink
fix: 应用服务配置页面滚动高度限制 (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
ElvisNam committed Jul 27, 2021
1 parent e5e8ba1 commit f4c8933
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ function Publish(props: PublishProps) {
<Empty description={'暂无实例'} />
</div>
)}
<ScrollArea className={styles.instanceListScroll} smoothScrolling={true}>
<ScrollArea className={styles.instanceListScroll} smoothScrolling={true} style={{ height: '700px' }}>
{configFile && k8sClusters && k8sClusters.length != 0 && (
<ul className={styles.instanceList}>
<div className={styles.instanceListOpt}>
Expand Down

0 comments on commit f4c8933

Please sign in to comment.