mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-31 12:20:26 +08:00
fix css
This commit is contained in:
parent
0312c4043c
commit
7bf3283954
@ -20,7 +20,7 @@ if TYPE_CHECKING: # Only import for type checking (is False at runtime).
|
||||
|
||||
class Block:
|
||||
def __init__(self, without_rendering=False, css=None):
|
||||
self.css = css
|
||||
self.css = css if css is not None else {}
|
||||
if without_rendering:
|
||||
return
|
||||
self.render()
|
||||
@ -104,9 +104,8 @@ class BlockContext(Block):
|
||||
css: Css rules to apply to block.
|
||||
"""
|
||||
self.children = []
|
||||
self.css = css
|
||||
self.visible = visible
|
||||
super().__init__()
|
||||
super().__init__(css=css)
|
||||
|
||||
def __enter__(self):
|
||||
self.parent = Context.block
|
||||
@ -117,7 +116,10 @@ class BlockContext(Block):
|
||||
Context.block = self.parent
|
||||
|
||||
def get_template_context(self):
|
||||
return {"css": self.css, "default_value": self.visible}
|
||||
return {
|
||||
"css": self.css if self.css is not None else {},
|
||||
"default_value": self.visible,
|
||||
}
|
||||
|
||||
def postprocess(self, y):
|
||||
return y
|
||||
|
@ -47,11 +47,10 @@ class Component(Block):
|
||||
)
|
||||
self.label = label
|
||||
self.requires_permissions = requires_permissions
|
||||
self.css = css if css is not None else {}
|
||||
self.interactive = interactive
|
||||
|
||||
self.set_interpret_parameters()
|
||||
super().__init__(without_rendering=without_rendering)
|
||||
super().__init__(without_rendering=without_rendering, css=css)
|
||||
|
||||
def __str__(self):
|
||||
return self.__repr__()
|
||||
|
@ -52,6 +52,7 @@ class TestBlocks(unittest.TestCase):
|
||||
textbox = gr.components.Textbox()
|
||||
demo.load(fake_func, [], [textbox])
|
||||
|
||||
print(demo.get_config_file())
|
||||
self.assertEqual(XRAY_CONFIG, demo.get_config_file())
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user