|
|
@@ -123,11 +123,11 @@ const PageAccessoriesModal = (props) => {
|
|
|
</Nav>
|
|
|
<hr className="my-0 grw-nav-slide-hr" style={{ width: `${sliderWidth}%`, marginLeft: `${sliderMarginLeft}%` }} />
|
|
|
<hr className="modal-split-hr m-0" />
|
|
|
- <TabContent activeTab={activeTab}>
|
|
|
+ <TabContent activeTab={activeTab} className="p-5">
|
|
|
<TabPane tabId="pagelist">
|
|
|
{pageAccessoriesContainer.state.activeComponents.has('pagelist') && <PageList />}
|
|
|
</TabPane>
|
|
|
- <TabPane tabId="timeline" className="p-4">
|
|
|
+ <TabPane tabId="timeline">
|
|
|
{pageAccessoriesContainer.state.activeComponents.has('timeline') && <PageTimeline /> }
|
|
|
</TabPane>
|
|
|
<TabPane tabId="pageHistory">
|
|
|
@@ -135,10 +135,10 @@ const PageAccessoriesModal = (props) => {
|
|
|
{pageAccessoriesContainer.state.activeComponents.has('pageHistory') && <PageHistory /> }
|
|
|
</div>
|
|
|
</TabPane>
|
|
|
- <TabPane tabId="attachment" className="p-4">
|
|
|
+ <TabPane tabId="attachment">
|
|
|
{pageAccessoriesContainer.state.activeComponents.has('attachment') && <PageAttachment />}
|
|
|
</TabPane>
|
|
|
- <TabPane tabId="shareLink" className="p-4">
|
|
|
+ <TabPane tabId="shareLink">
|
|
|
{pageAccessoriesContainer.state.activeComponents.has('shareLink') && <ShareLink />}
|
|
|
</TabPane>
|
|
|
</TabContent>
|