Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -15,10 +15,12 @@ get_window_url_params = """
|
|
15 |
"""
|
16 |
set_window_url_params = """
|
17 |
function(text_input, url_params) {
|
18 |
-
const
|
19 |
-
|
|
|
|
|
20 |
window.parent.postMessage({ queryString: queryString }, "*")
|
21 |
-
return [text_input,
|
22 |
}
|
23 |
"""
|
24 |
with gr.Blocks() as block:
|
|
|
15 |
"""
|
16 |
set_window_url_params = """
|
17 |
function(text_input, url_params) {
|
18 |
+
const params = new URLSearchParams(window.location.search);
|
19 |
+
params.set("text_input", text_input)
|
20 |
+
url_params = Object.fromEntries(params);
|
21 |
+
const queryString = '?' + params.toString();
|
22 |
window.parent.postMessage({ queryString: queryString }, "*")
|
23 |
+
return [text_input, url_params];
|
24 |
}
|
25 |
"""
|
26 |
with gr.Blocks() as block:
|