Skip to content

Commit 1b3f61e

Browse files
committed
reverting change to callable(title) process
1 parent 0d32e65 commit 1b3f61e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dash/dash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2474,7 +2474,7 @@ def update(pathname_, search_, **states):
24742474
**{**(path_variables or {}), **query_parameters, **states}
24752475
)
24762476
if callable(title):
2477-
title = title(**{**(path_variables or {})})
2477+
title = title(**(path_variables or {}))
24782478

24792479
return layout, {"title": title}
24802480

0 commit comments

Comments
 (0)