We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69272f9 commit 663f028Copy full SHA for 663f028
tests/playwright/shiny/bookmark/modules/app-core-recursive.py
@@ -90,14 +90,14 @@ def app_ui(request: Request) -> ui.Tag:
90
return ui.page_fixed(
91
ui.output_code("bookmark_store"),
92
"Click Buttons to update bookmark",
93
- mod_btn(f"mod{k-1}", k - 1),
+ mod_btn(f"mod{k - 1}", k - 1),
94
)
95
96
97
# Needs access to the restore context to the dynamic UI
98
def server(input: Inputs, output: Outputs, session: Session):
99
100
- btn_server(f"mod{k-1}", k - 1)
+ btn_server(f"mod{k - 1}", k - 1)
101
102
@render.code
103
def bookmark_store():
0 commit comments