mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-31 12:20:26 +08:00
Fix the images in the theme builder to use permanent URI (#5188)
* themes-header-image * add changeset * add changeset --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
parent
643442e1a5
commit
b22e1888fc
5
.changeset/light-mice-bake.md
Normal file
5
.changeset/light-mice-bake.md
Normal file
@ -0,0 +1,5 @@
|
||||
---
|
||||
"gradio": patch
|
||||
---
|
||||
|
||||
feat:Fix the images in the theme builder to use permanent URI
|
@ -63,7 +63,7 @@ with gr.Blocks(theme=gr.themes.Default()) as demo:
|
||||
check = gr.Checkbox(label="Go")
|
||||
with gr.Column(variant="panel", scale=2):
|
||||
img = gr.Image(
|
||||
"https://raw.githubusercontent.com/gradio-app/gradio/main/js/_website/src/assets/img/header-image.jpg",
|
||||
"https://gradio-static-files.s3.us-west-2.amazonaws.com/header-image.jpg",
|
||||
label="Image",
|
||||
).style(height=320)
|
||||
with gr.Row():
|
||||
@ -74,7 +74,7 @@ with gr.Blocks(theme=gr.themes.Default()) as demo:
|
||||
|
||||
def go(*args):
|
||||
time.sleep(3)
|
||||
return "https://raw.githubusercontent.com/gradio-app/gradio/main/js/_website/src/assets/img/header-image.jpg"
|
||||
return "https://gradio-static-files.s3.us-west-2.amazonaws.com/header-image.jpgjpg"
|
||||
|
||||
go_btn.click(go, [radio, drop, drop_2, check, name], img, api_name="go")
|
||||
|
||||
|
@ -351,7 +351,7 @@ with gr.Blocks( # noqa: SIM117
|
||||
check = gr.Checkbox(label="Go")
|
||||
with gr.Column(variant="panel", scale=2):
|
||||
img = gr.Image(
|
||||
"https://raw.githubusercontent.com/gradio-app/gradio/main/js/_website/src/assets/img/header-image.jpg",
|
||||
"https://gradio-static-files.s3.us-west-2.amazonaws.com/header-image.jpg",
|
||||
label="Image",
|
||||
height=320,
|
||||
)
|
||||
@ -365,7 +365,7 @@ with gr.Blocks( # noqa: SIM117
|
||||
|
||||
def go(*args):
|
||||
time.sleep(3)
|
||||
return "https://raw.githubusercontent.com/gradio-app/gradio/main/js/_website/src/assets/img/header-image.jpg"
|
||||
return "https://gradio-static-files.s3.us-west-2.amazonaws.com/header-image.jpg"
|
||||
|
||||
go_btn.click(
|
||||
go,
|
||||
|
Loading…
x
Reference in New Issue
Block a user