mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-30 11:07:52 +08:00
tree h-full 滚动条问题修复
This commit is contained in:
parent
c9b3d6f862
commit
e61b4c09d2
@ -7,6 +7,7 @@
|
||||
|
||||
&.h-full {
|
||||
max-height: none;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
&.no-border {
|
||||
|
@ -647,7 +647,9 @@ export class TreeSelector extends React.Component<
|
||||
) : null}
|
||||
{childrenItems}
|
||||
</ul>
|
||||
) : !childrenItems && item.placeholder && unfolded[item[valueField]] ? (
|
||||
) : !childrenItems &&
|
||||
item.placeholder &&
|
||||
unfolded[item[valueField]] ? (
|
||||
<ul className={cx('Tree-sublist')}>
|
||||
<li className={cx('Tree-item')}>
|
||||
<div className={cx('Tree-placeholder')}>{item.placeholder}</div>
|
||||
|
Loading…
Reference in New Issue
Block a user