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:
Abubakar Abid 2023-08-11 13:01:57 -04:00 committed by GitHub
parent 643442e1a5
commit b22e1888fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 4 deletions

View File

@ -0,0 +1,5 @@
---
"gradio": patch
---
feat:Fix the images in the theme builder to use permanent URI

View File

@ -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")

View File

@ -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,