File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ class Inspector extends Component {
9696 </ span >
9797 </ Button >
9898 </ PanelBody >
99- { 'content' === this . state . tab && (
99+ < div style = { { display : 'content' === this . state . tab ? 'block' : 'none' } } >
100100 < Fragment >
101101 < PanelBody
102102 title = { __ ( 'Feed Source' , 'feedzy-rss-feeds' ) }
@@ -485,10 +485,11 @@ class Inspector extends Component {
485485 />
486486 </ PanelBody >
487487 </ Fragment >
488- ) }
488+ </ div >
489489
490- { 'fetched' === this . props . state . route &&
491- 'style' === this . state . tab && (
490+ < div style = { {
491+ display : 'fetched' === this . props . state . route &&
492+ 'style' === this . state . tab ? 'block' : 'none' } } >
492493 < Fragment >
493494 < PanelBody
494495 title = { __ (
@@ -785,9 +786,13 @@ class Inspector extends Component {
785786 />
786787 </ PanelBody >
787788 </ Fragment >
788- ) }
789- { 'fetched' === this . props . state . route &&
790- 'advanced' === this . state . tab && (
789+
790+ </ div >
791+
792+ < div style = { {
793+ display : 'fetched' === this . props . state . route &&
794+ 'advanced' === this . state . tab ? 'block' : 'none'
795+ } } >
791796 < Fragment >
792797 < PanelBody
793798 title = { __ (
@@ -1068,7 +1073,7 @@ class Inspector extends Component {
10681073 />
10691074 </ PanelBody >
10701075 </ Fragment >
1071- ) }
1076+ </ div >
10721077 </ InspectorControls >
10731078 </ Fragment >
10741079 ) ;
You can’t perform that action at this time.
0 commit comments