Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"packageName": "office-ui-fabric-react",
"comment": "ScrollablePane: Fix DetailsList rows not rendering. Add maxWidth to StickyAbove/StickyBelow",
"type": "patch"
}
],
"packageName": "office-ui-fabric-react",
"email": "[email protected]"
}
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,11 @@ export class ScrollablePaneBase extends BaseComponent<IScrollablePaneProps, {}>
{ ...getNativeProps(this.props, divProperties) }
ref={ this._root }
className={ classNames.root }
data-is-scrollable={ true }
>
<div ref={ this._stickyAboveRef } className={ classNames.stickyAbove } />
<div ref={ this._stickyBelowRef } className={ classNames.stickyBelow } />
<div data-is-scrollable={ true }>
<div>
{ this.props.children }
</div>
</div>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export const getStyles = (
position: 'absolute',
pointerEvents: 'auto',
width: '100%',
maxWidth: 'inherit',
zIndex: 1
};

Expand Down