forked from p96170835/amis
tree h-full 滚动条问题修复
This commit is contained in:
parent
b68db4a4fc
commit
e843a36aad
|
@ -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