diff --git a/src/frontend/src/controllers/API/index.ts b/src/frontend/src/controllers/API/index.ts index d5508a99c..a8a128a69 100644 --- a/src/frontend/src/controllers/API/index.ts +++ b/src/frontend/src/controllers/API/index.ts @@ -610,7 +610,7 @@ export async function getStoreComponents( queryParams.push(`status=${status}`); } if (tags !== undefined && tags !== null && tags.length > 0) { - queryParams.push(`tags=${tags.join(",")}`); + queryParams.push(`tags=${tags.join(encodeURIComponent(","))}`); } if (sort !== undefined && sort !== null) {