mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 20:35:19 +00:00
fix: function community import
This commit is contained in:
parent
450f5292ef
commit
d8c5262161
1 changed files with 8 additions and 0 deletions
8
src/routes/(app)/workspace/functions/create/+page.svelte
Normal file
8
src/routes/(app)/workspace/functions/create/+page.svelte
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<script lang="ts">
|
||||
import { goto } from '$app/navigation';
|
||||
import { onMount } from 'svelte';
|
||||
|
||||
onMount(() => {
|
||||
goto('/admin/functions/create');
|
||||
});
|
||||
</script>
|
||||
Loading…
Reference in a new issue