mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-13 04:45:19 +00:00
fix: functions redirect
This commit is contained in:
parent
37f19f68eb
commit
9779bbfd8e
2 changed files with 2 additions and 2 deletions
|
|
@ -49,7 +49,7 @@
|
|||
functions.set(await getFunctions(localStorage.token));
|
||||
models.set(await getModels(localStorage.token));
|
||||
|
||||
await goto('/workspace/functions');
|
||||
await goto('/admin/functions');
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@
|
|||
if (id) {
|
||||
func = await getFunctionById(localStorage.token, id).catch((error) => {
|
||||
toast.error(error);
|
||||
goto('/workspace/functions');
|
||||
goto('/admin/functions');
|
||||
return null;
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue