mirror of
https://github.com/BerriAI/litellm.git
synced 2026-08-28 05:25:59 +00:00
fix(ui): remove duplicate URL in tagsSpendLogsCall query string
The template literal in the tags query parameter concatenation included
`${url}` inside a `+=` assignment, causing the full URL to be doubled.
Supersedes #8793 (original fix by @Mte90, now stale).
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
c68383068a
commit
80a3e072be
1 changed files with 1 additions and 1 deletions
|
|
@ -2424,7 +2424,7 @@ export const tagsSpendLogsCall = async (
|
|||
|
||||
// if tags, convert the list to a comma separated string
|
||||
if (tags) {
|
||||
url += `${url}&tags=${tags.join(",")}`;
|
||||
url += `&tags=${tags.join(",")}`;
|
||||
}
|
||||
|
||||
console.log("in tagsSpendLogsCall:", url);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue