Merge pull request #8063 from open-webui/dev

fix: pipelines not loading
This commit is contained in:
Timothy Jaeryang Baek 2024-12-25 12:08:27 -08:00 committed by GitHub
commit 3161a5d1f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -682,7 +682,7 @@ export const getPipelines = async (token: string, urlIdx?: string) => {
searchParams.append('urlIdx', urlIdx);
}
const res = await fetch(`${WEBUI_BASE_URL}/api/v1/pipelines?${searchParams.toString()}`, {
const res = await fetch(`${WEBUI_BASE_URL}/api/v1/pipelines/?${searchParams.toString()}`, {
method: 'GET',
headers: {
Accept: 'application/json',