|
@@ -43,7 +43,7 @@ const PageAccessoriesModal = (props) => {
|
|
|
>
|
|
>
|
|
|
<ModalBody>
|
|
<ModalBody>
|
|
|
<Nav className="nav-title border-bottom">
|
|
<Nav className="nav-title border-bottom">
|
|
|
- <NavItem className={`nav-link ${props.activeTab === 'pageList' && 'active'}`}>
|
|
|
|
|
|
|
+ <NavItem className={`nav-link ${props.activeTab === 'pageList' && 'active active-border'}`}>
|
|
|
<NavLink
|
|
<NavLink
|
|
|
onClick={() => { switchTabHandler('pageList') }}
|
|
onClick={() => { switchTabHandler('pageList') }}
|
|
|
>
|
|
>
|
|
@@ -51,7 +51,7 @@ const PageAccessoriesModal = (props) => {
|
|
|
{ t('page_list') }
|
|
{ t('page_list') }
|
|
|
</NavLink>
|
|
</NavLink>
|
|
|
</NavItem>
|
|
</NavItem>
|
|
|
- <NavItem className={`nav-link ${props.activeTab === 'timeLine' && 'active'}`}>
|
|
|
|
|
|
|
+ <NavItem className={`nav-link ${props.activeTab === 'timeLine' && 'active active-border'}`}>
|
|
|
<NavLink
|
|
<NavLink
|
|
|
onClick={() => { switchTabHandler('timeLine') }}
|
|
onClick={() => { switchTabHandler('timeLine') }}
|
|
|
>
|
|
>
|
|
@@ -59,7 +59,7 @@ const PageAccessoriesModal = (props) => {
|
|
|
{ t('Timeline View') }
|
|
{ t('Timeline View') }
|
|
|
</NavLink>
|
|
</NavLink>
|
|
|
</NavItem>
|
|
</NavItem>
|
|
|
- <NavItem className={`nav-link ${props.activeTab === 'recentChanges' && 'active'}`}>
|
|
|
|
|
|
|
+ <NavItem className={`nav-link ${props.activeTab === 'recentChanges' && 'active active-border'}`}>
|
|
|
<NavLink
|
|
<NavLink
|
|
|
onClick={() => { switchTabHandler('recentChanges') }}
|
|
onClick={() => { switchTabHandler('recentChanges') }}
|
|
|
>
|
|
>
|
|
@@ -67,7 +67,7 @@ const PageAccessoriesModal = (props) => {
|
|
|
{ t('History') }
|
|
{ t('History') }
|
|
|
</NavLink>
|
|
</NavLink>
|
|
|
</NavItem>
|
|
</NavItem>
|
|
|
- <NavItem className={`nav-link ${props.activeTab === 'attachment' && 'active'}`}>
|
|
|
|
|
|
|
+ <NavItem className={`nav-link ${props.activeTab === 'attachment' && 'active active-border'}`}>
|
|
|
<NavLink
|
|
<NavLink
|
|
|
onClick={() => { switchTabHandler('attachment') }}
|
|
onClick={() => { switchTabHandler('attachment') }}
|
|
|
href="#attachment"
|
|
href="#attachment"
|
|
@@ -78,7 +78,7 @@ const PageAccessoriesModal = (props) => {
|
|
|
</NavItem>
|
|
</NavItem>
|
|
|
</Nav>
|
|
</Nav>
|
|
|
<TabContent activeTab={props.activeTab}>
|
|
<TabContent activeTab={props.activeTab}>
|
|
|
- <TabPane tabId="attachment">
|
|
|
|
|
|
|
+ <TabPane tabId="attachment" className="p-4">
|
|
|
<PageAttachment />
|
|
<PageAttachment />
|
|
|
{/* {activeComponents.has('global-notification') && <GlobalNotification />} */}
|
|
{/* {activeComponents.has('global-notification') && <GlobalNotification />} */}
|
|
|
</TabPane>
|
|
</TabPane>
|