File tree Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ class Inspector extends Component {
96
96
</ span >
97
97
</ Button >
98
98
</ PanelBody >
99
- { 'content' === this . state . tab && (
99
+ < div style = { { display : 'content' === this . state . tab ? 'block' : 'none' } } >
100
100
< Fragment >
101
101
< PanelBody
102
102
title = { __ ( 'Feed Source' , 'feedzy-rss-feeds' ) }
@@ -485,10 +485,11 @@ class Inspector extends Component {
485
485
/>
486
486
</ PanelBody >
487
487
</ Fragment >
488
- ) }
488
+ </ div >
489
489
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' } } >
492
493
< Fragment >
493
494
< PanelBody
494
495
title = { __ (
@@ -785,9 +786,13 @@ class Inspector extends Component {
785
786
/>
786
787
</ PanelBody >
787
788
</ 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
+ } } >
791
796
< Fragment >
792
797
< PanelBody
793
798
title = { __ (
@@ -1068,7 +1073,7 @@ class Inspector extends Component {
1068
1073
/>
1069
1074
</ PanelBody >
1070
1075
</ Fragment >
1071
- ) }
1076
+ </ div >
1072
1077
</ InspectorControls >
1073
1078
</ Fragment >
1074
1079
) ;
You can’t perform that action at this time.
0 commit comments