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 = { __ (
@@ -858,9 +859,13 @@ class Inspector extends Component {
858
859
/>
859
860
</ PanelBody >
860
861
</ 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
+ } } >
864
869
< Fragment >
865
870
< PanelBody
866
871
title = { __ (
@@ -1141,7 +1146,7 @@ class Inspector extends Component {
1141
1146
/>
1142
1147
</ PanelBody >
1143
1148
</ Fragment >
1144
- ) }
1149
+ </ div >
1145
1150
</ InspectorControls >
1146
1151
</ Fragment >
1147
1152
) ;
You can’t perform that action at this time.
0 commit comments