You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: shiny/bookmark/_bookmark.py
+11-9Lines changed: 11 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -97,18 +97,20 @@ class Bookmark(ABC):
97
97
This value could help determine how session state is saved. However, app authors will not be able to change how the session is restored as the server function will run after the session has been restored.
98
98
"""
99
99
100
+
# Making this a read only property as app authors will not be able to change how the session is restored as the server function will run after the session has been restored.
100
101
@property
101
102
defstore(self) ->BookmarkStore:
102
-
# Should we allow for this?
103
-
# Allows a per-session override of the global bookmark store
0 commit comments