Skip to content

Commit af51e7f

Browse files
committed
Add spaces around action buttons in examples
1 parent 189a3ea commit af51e7f

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

examples/req/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
app_ui = ui.page_fluid(
55
ui.input_action_button("safe", "Throw a safe error"),
6+
" ",
67
ui.output_ui("safe"),
78
ui.input_action_button("unsafe", "Throw an unsafe error"),
89
ui.output_ui("unsafe"),

shiny/examples/Calc/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
app_ui = ui.page_fluid(
77
ui.input_action_button("first", "Invalidate first (slow) computation"),
8+
" ",
89
ui.input_action_button("second", "Invalidate second (fast) computation"),
910
ui.br(),
1011
ui.output_ui("result"),

shiny/examples/Value/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
app_ui = ui.page_fluid(
44
ui.input_action_button("minus", "-1"),
5+
" ",
56
ui.input_action_button("plus", "+1"),
67
ui.br(),
78
ui.output_text("value"),

shiny/examples/notification_show/app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
app_ui = ui.page_fluid(
44
ui.input_action_button("show", "Show"),
5+
" ",
56
ui.input_action_button("remove", "Remove"),
67
)
78

0 commit comments

Comments
 (0)