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 fe4c0e8 commit 6ad1345Copy full SHA for 6ad1345
shiny/api-examples/bookmark_callbacks/app.py
@@ -11,7 +11,7 @@ def app_ui(request: Request):
11
"Directions: "
12
"\n1. Change the radio buttons below"
13
"\n2. Refresh your browser."
14
- "\n3. Only the first radio button will be restored."
+ "\n3. The radio buttons should be restored to their previous state."
15
"\n4. Check the console messages for bookmarking events."
16
),
17
ui.hr(),
@@ -45,12 +45,7 @@ async def _():
45
46
@render.code
47
def letters():
48
- return str(
49
- [
50
- input.letter(),
51
- lowercase_letter(),
52
- ]
53
- )
+ return str([input.letter(), lowercase_letter()])
54
55
# When the user interacts with the input, we will bookmark the state.
56
@reactive.effect
0 commit comments