mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
This commit is contained in:
parent
dc1e750daf
commit
90a0c0ce41
1 changed files with 15 additions and 11 deletions
|
@ -6,6 +6,7 @@
|
|||
|
||||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import Style from 'style-it';
|
||||
import { WorkpadPage } from '../../../components/workpad_page';
|
||||
import { Link } from '../../../components/link';
|
||||
|
||||
|
@ -36,17 +37,20 @@ export class ExportApp extends React.PureComponent {
|
|||
Edit Workpad
|
||||
</Link>
|
||||
</div>
|
||||
<div className="canvasExport__stageContent">
|
||||
<WorkpadPage
|
||||
isSelected
|
||||
key={activePage.id}
|
||||
pageId={activePage.id}
|
||||
height={height}
|
||||
width={width}
|
||||
registerLayout={() => {}}
|
||||
unregisterLayout={() => {}}
|
||||
/>
|
||||
</div>
|
||||
{Style.it(
|
||||
workpad.css,
|
||||
<div className="canvasExport__stageContent">
|
||||
<WorkpadPage
|
||||
isSelected
|
||||
key={activePage.id}
|
||||
pageId={activePage.id}
|
||||
height={height}
|
||||
width={width}
|
||||
registerLayout={() => {}}
|
||||
unregisterLayout={() => {}}
|
||||
/>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue