Skip to content

Commit

Permalink
Fixed class names in page manager (#26573)
Browse files Browse the repository at this point in the history
  • Loading branch information
cqliu1 authored Dec 4, 2018
1 parent 17bca7b commit 53b8b9a
Showing 1 changed file with 4 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,22 +170,16 @@ export class PageManager extends React.PureComponent {
<Droppable droppableId="droppable-page-manager" direction="horizontal">
{provided => (
<div
className={`canvasPageManager__pageList ${
showTrayPop ? 'canvasPageManager--trayPop' : ''
}`}
ref={el => {
this.pageListRef = el;
provided.innerRef(el);
}}
{...provided.droppableProps}
>
{Style.it(
workpadCSS,
<div
className={`canvasPageManager__pageList ${
showTrayPop ? 'canvasPageManager--trayPop' : ''
}`}
>
{pages.map(this.renderPage)}
</div>
)}
{Style.it(workpadCSS, <div>{pages.map(this.renderPage)}</div>)}
{provided.placeholder}
</div>
)}
Expand Down

0 comments on commit 53b8b9a

Please sign in to comment.