Skip to content

Commit ddfd762

Browse files
authored
Fix bug in fillable_mobile logic (#859)
1 parent de8d0f4 commit ddfd762

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shiny/ui/_page.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ def page_fillable(
306306
# first set of attributes.
307307
FILLABLE_CONTAINTER_ATTRS,
308308
{"class": "bslib-page-fill bslib-gap-spacing", "style": style},
309-
{"class": "bslib-flow-mobile"} if fillable_mobile else None,
309+
{"class": "bslib-flow-mobile"} if not fillable_mobile else None,
310310
attrs,
311311
*children,
312312
components_dependency(),

0 commit comments

Comments
 (0)