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 3c7903e commit 58a7eebCopy full SHA for 58a7eeb
src/sauce/home.rs
@@ -196,7 +196,7 @@ async fn download_xs_cache(selected_indexes: HashSet<usize>) {
196
let json_data = serde_json::to_string_pretty(&cache).unwrap();
197
198
// Create a Blob from the JSON data
199
- let mut blob_options = BlobPropertyBag::new();
+ let blob_options = BlobPropertyBag::new();
200
blob_options.set_type("application/json");
201
202
let blob = Blob::new_with_str_sequence_and_options(
@@ -546,7 +546,7 @@ pub fn home() -> Html {
546
</button>
547
548
<button
549
- class="btn btn-success mt-2"
+ class="btn btn-primary mt-2"
550
onclick={onclick_download}
551
>
552
<i class="fas fa-download mr-2"></i>
0 commit comments