File tree 1 file changed +9
-9
lines changed
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -746,15 +746,6 @@ def _setup_plotlyjs(self):
746
746
def layout (self ):
747
747
return self ._layout
748
748
749
- def _layout_value (self ):
750
- layout = self ._layout () if self ._layout_is_function else self ._layout
751
-
752
- # Add any extra components
753
- if self ._extra_components :
754
- layout = html .Div (children = [layout ] + self ._extra_components )
755
-
756
- return layout
757
-
758
749
@layout .setter
759
750
def layout (self , value ):
760
751
_validate .validate_layout_type (value )
@@ -773,6 +764,15 @@ def layout(self, value):
773
764
_validate .validate_layout (value , layout_value )
774
765
self .validation_layout = layout_value
775
766
767
+ def _layout_value (self ):
768
+ layout = self ._layout () if self ._layout_is_function else self ._layout
769
+
770
+ # Add any extra components
771
+ if self ._extra_components :
772
+ layout = html .Div (children = [layout ] + self ._extra_components )
773
+
774
+ return layout
775
+
776
776
@property
777
777
def index_string (self ):
778
778
return self ._index_string
You can’t perform that action at this time.
0 commit comments