Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Austionian committed Nov 22, 2024
1 parent 4a9e120 commit f700fce
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/routes/root.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ pub async fn root(
let mut context = tera::Context::new();

let spot: Arc<Spot> = Arc::new(selected_spot.0.into());
// Wrap the sender in an arc so the channel doesn't close early
let tx: Arc<Sender<Result<_, _>>> = Arc::new(tx);

// Add the initial context to the page for the loading state
Expand Down
8 changes: 4 additions & 4 deletions templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,20 @@
rel="stylesheet"
/>

<link rel="preload" href="/assets/styles.css?version=159" as="style" />
<link rel="preload" href="/assets/styles.css?version=160" as="style" />
<link
rel="preload"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/chart.umd.min.js"
as="script"
/>
<link
rel="preload"
href="/assets/static/index.min.js?version=162"
href="/assets/static/index.min.js?version=163"
as="script"
/>

<link
href="/assets/styles.css?version=159"
href="/assets/styles.css?version=160"
rel="stylesheet"
type="text/css"
/>
Expand All @@ -66,7 +66,7 @@
@keyup.escape="showLiveFeed = false; showNav = false;"
:class="{ 'overflow-hidden': showNav || showLiveFeed }"
>
<script src="/assets/static/index.min.js?version=162"></script>
<script src="/assets/static/index.min.js?version=163"></script>
{% block body %} {% endblock %} {% include "includes/footer.html" %} {% if
live_reload %}
<script>
Expand Down

0 comments on commit f700fce

Please sign in to comment.