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 = { __ (
@@ -858,9 +859,13 @@ class Inspector extends Component {
858859 />
859860 </ PanelBody >
860861 </ Fragment >
861- ) }
862- { 'fetched' === this . props . state . route &&
863- 'advanced' === this . state . tab && (
862+
863+ </ div >
864+
865+ < div style = { {
866+ display : 'fetched' === this . props . state . route &&
867+ 'advanced' === this . state . tab ? 'block' : 'none'
868+ } } >
864869 < Fragment >
865870 < PanelBody
866871 title = { __ (
@@ -1141,7 +1146,7 @@ class Inspector extends Component {
11411146 />
11421147 </ PanelBody >
11431148 </ Fragment >
1144- ) }
1149+ </ div >
11451150 </ InspectorControls >
11461151 </ Fragment >
11471152 ) ;
You can’t perform that action at this time.
0 commit comments