From 5e4ce6410002f62709dd10c80858bba3fb31e63f Mon Sep 17 00:00:00 2001 From: Ludwig Date: Sun, 11 Jan 2026 00:41:05 +0000 Subject: [PATCH] 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. --- dash/dash-renderer/src/wrapper/DashContext.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dash/dash-renderer/src/wrapper/DashContext.tsx b/dash/dash-renderer/src/wrapper/DashContext.tsx index 1da719f664..e031bce638 100644 --- a/dash/dash-renderer/src/wrapper/DashContext.tsx +++ b/dash/dash-renderer/src/wrapper/DashContext.tsx @@ -18,7 +18,7 @@ type LoadingOptions = { * Useful if you want the loading of a child component * as the path is available in `child.props.componentPath`. */ - rawPath?: boolean; + rawPath?: (string | number)[]; /** * Function used to filter the properties of the loading component. * Filter argument is an Entry of `{path, property, id}`.