Skip to content

Commit

Permalink
Merge pull request #281 from andressommerhoff/dynamic_prefix_fix_recu…
Browse files Browse the repository at this point in the history
…rsive

Fix dynamic_prefix() not doing recursively
  • Loading branch information
emilhe authored Oct 2, 2023
2 parents dc16b43 + 951d4bd commit 3514a8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dash_extensions/enrich.py
Original file line number Diff line number Diff line change
Expand Up @@ -927,7 +927,7 @@ def dynamic_prefix(app: Union[DashBlueprint, DashProxy], component: Component):
if len(prefix_transforms) == 0:
return
prefix_transform: PrefixIdTransform = prefix_transforms[0]
prefix_component(prefix_transform.prefix, component, prefix_transform.escape)
prefix_recursively(component, prefix_transform.prefix, prefix_transform.prefix_func, prefix_transform.escape)


# endregion
Expand Down

0 comments on commit 3514a8d

Please sign in to comment.