Commit 954bba9d authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

chore: version update

parent ee3e991d
...@@ -31,7 +31,7 @@ if ENV == "prod": ...@@ -31,7 +31,7 @@ if ENV == "prod":
# WEBUI_VERSION # WEBUI_VERSION
#################################### ####################################
WEBUI_VERSION = os.environ.get("WEBUI_VERSION", "v1.0.0-alpha.11") WEBUI_VERSION = os.environ.get("WEBUI_VERSION", "v1.0.0-alpha.21")
#################################### ####################################
# WEBUI_AUTH # WEBUI_AUTH
......
...@@ -40,6 +40,7 @@ ...@@ -40,6 +40,7 @@
const deleteModelfilebyTagName = async (tagName) => { const deleteModelfilebyTagName = async (tagName) => {
await deleteModelHandler(tagName); await deleteModelHandler(tagName);
await modelfiles.set($modelfiles.filter((modelfile) => modelfile.tagName != tagName)); await modelfiles.set($modelfiles.filter((modelfile) => modelfile.tagName != tagName));
localStorage.setItem('modelfiles', JSON.stringify($modelfiles));
}; };
</script> </script>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment