Skip to content

Commit

Permalink
UI bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
erikgassler committed Oct 14, 2023
1 parent 2cfcff4 commit 6f43ceb
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
19 changes: 9 additions & 10 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Docs/README.md
@@ -1,6 +1,6 @@
# Task Story

[WebUI Version: 0.6.52](https://github.com/StoicDreams/RustWebUI)
[WebUI Version: 0.6.54](https://github.com/StoicDreams/RustWebUI)

Simple task management tool focused around Continuous Agile Software Engineering practices and methodologies.

Expand Down
2 changes: 1 addition & 1 deletion webapp/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "webapp"
version = "0.6.52" #syncwebui
version = "0.6.54" #syncwebui
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion webapp/root_files/service-worker.js
Expand Up @@ -11,7 +11,7 @@ function get_uuid() {
});
}
}
const currentVersion = location.host.substring(0, 9) === 'localhost' ? `${get_uuid()}` : 'webui_0.6.52';
const currentVersion = location.host.substring(0, 9) === 'localhost' ? `${get_uuid()}` : 'webui_0.6.54';
const cacheNamePrefix = 'offline-cache-';
const cacheName = `${cacheNamePrefix}${currentVersion}`;
const offlineAssetsInclude = [/\.wasm/, /\.html/, /\.js$/, /\.json$/, /\.css$/, /\.woff$/, /\.png$/, /\.jpe?g$/, /\.gif$/, /\.ico$/];
Expand Down

0 comments on commit 6f43ceb

Please sign in to comment.