File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " gradio " : patch
3
+ ---
4
+
5
+ fix: Remove gray line present in ChatInterface demos
Original file line number Diff line number Diff line change 8
8
9
9
from gradio_client .documentation import document
10
10
11
- from gradio .components .base import FormComponent
11
+ from gradio .components .base import Component
12
12
from gradio .events import Events
13
13
14
14
15
15
@document ()
16
- class BrowserState (FormComponent ):
16
+ class BrowserState (Component ):
17
17
EVENTS = [Events .change ]
18
18
"""
19
19
Special component that stores state in the browser's localStorage in an encrypted format.
@@ -73,3 +73,7 @@ def example_payload(self) -> Any:
73
73
74
74
def example_value (self ) -> Any :
75
75
return "test"
76
+
77
+ def breaks_grouping (self ) -> bool :
78
+ """BrowserState components should not break wrapper grouping chains."""
79
+ return False
You can’t perform that action at this time.
0 commit comments