MCPcopy
hub / github.com/plotly/dash / _layout_value

Method _layout_value

dash/dash.py:921–931  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

919 self.validation_layout = layout_value
920
921 def _layout_value(self):
922 if self._layout_is_function:
923 layout = self._layout() # type: ignore[reportOptionalCall]
924 else:
925 layout = self._layout
926
927 # Add any extra components
928 if self._extra_components:
929 layout = html.Div(children=[layout] + self._extra_components) # type: ignore[reportArgumentType]
930
931 return layout
932
933 @property
934 def index_string(self) -> str:

Callers 3

layoutMethod · 0.95
get_layoutMethod · 0.95
_setup_serverMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected