We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eadf4c4 commit 486ac97Copy full SHA for 486ac97
src/sauce/home.rs
@@ -224,7 +224,7 @@ async fn download_xs_cache(selected_indexes: HashSet<usize>) {
224
let document = web_sys::window().unwrap().document().unwrap();
225
let a = document.create_element("a").unwrap();
226
a.set_attribute("href", &url).unwrap();
227
- a.set_attribute("download", "xs_cache.json").unwrap();
+ a.set_attribute("download", "cross_sections_from_xsplot.json").unwrap();
228
a.set_attribute("style", "display: none;").unwrap();
229
document.body().unwrap().append_child(&a).unwrap();
230
0 commit comments