diff --git a/backend/config.py b/backend/config.py index 33e5a25b..fa73a1f9 100644 --- a/backend/config.py +++ b/backend/config.py @@ -31,7 +31,7 @@ if ENV == "prod": # 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 diff --git a/src/routes/(app)/modelfiles/+page.svelte b/src/routes/(app)/modelfiles/+page.svelte index e11aad58..d9c2b6e2 100644 --- a/src/routes/(app)/modelfiles/+page.svelte +++ b/src/routes/(app)/modelfiles/+page.svelte @@ -40,6 +40,7 @@ const deleteModelfilebyTagName = async (tagName) => { await deleteModelHandler(tagName); await modelfiles.set($modelfiles.filter((modelfile) => modelfile.tagName != tagName)); + localStorage.setItem('modelfiles', JSON.stringify($modelfiles)); };