Skip to content

Commit

Permalink
Merge pull request #262 from ollama-webui/custom-modelfile-load-fix
Browse files Browse the repository at this point in the history
fix: custom modelfile url search param
  • Loading branch information
tjbck authored Dec 22, 2023
2 parents 8cd93a4 + 7043509 commit 77c1a77
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion backend/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# WEBUI_VERSION
####################################

WEBUI_VERSION = os.environ.get("WEBUI_VERSION", "v1.0.0-alpha.33")
WEBUI_VERSION = os.environ.get("WEBUI_VERSION", "v1.0.0-alpha.34")

####################################
# WEBUI_AUTH
Expand Down
4 changes: 2 additions & 2 deletions src/routes/(app)/modelfiles/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
<div class=" flex space-x-4 cursor-pointer w-full mb-3">
<a
class=" flex flex-1 space-x-4 cursor-pointer w-full"
href={`/?models=${modelfile.tagName}`}
href={`/?models=${encodeURIComponent(modelfile.tagName)}`}
>
<div class=" self-center w-10">
<div class=" rounded-full bg-stone-700">
Expand All @@ -121,7 +121,7 @@
<a
class="self-center w-fit text-sm px-2 py-2 border dark:border-gray-600 rounded-xl"
type="button"
href={`/modelfiles/edit?tag=${modelfile.tagName}`}
href={`/modelfiles/edit?tag=${encodeURIComponent(modelfile.tagName)}`}
>
<svg
xmlns="http://www.w3.org/2000/svg"
Expand Down
5 changes: 4 additions & 1 deletion src/routes/(app)/modelfiles/create/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,10 @@ SYSTEM """${system}"""`.replace(/^\s*\n/gm, '');
};
const saveModelfile = async (modelfile) => {
await modelfiles.set([...$modelfiles, modelfile]);
await modelfiles.set([
...$modelfiles.filter((m) => m.tagName !== modelfile.tagName),
modelfile
]);
localStorage.setItem('modelfiles', JSON.stringify($modelfiles));
};
Expand Down

0 comments on commit 77c1a77

Please sign in to comment.