Skip to content

Commit 5e4ce64

Browse files
authored
fix to loadingOptions.rawPath type
loadingOptions.rawPath was incorrectly set to boolean. Following show docs example (https://dash.plotly.com/dash-3-for-component-developers) so it aligns with example.
1 parent 8804571 commit 5e4ce64

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dash/dash-renderer/src/wrapper/DashContext.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ type LoadingOptions = {
1818
* Useful if you want the loading of a child component
1919
* as the path is available in `child.props.componentPath`.
2020
*/
21-
rawPath?: boolean;
21+
rawPath?: (string | number)[];
2222
/**
2323
* Function used to filter the properties of the loading component.
2424
* Filter argument is an Entry of `{path, property, id}`.

0 commit comments

Comments
 (0)