Skip to content

Commit

Permalink
fix = symbol not allowed in changeset tags
Browse files Browse the repository at this point in the history
  • Loading branch information
k-yle committed Nov 4, 2024
1 parent 0a5e2e7 commit f1bbfbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/upload/Upload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ function parseCsTags(str: string): Record<string, string> | undefined {
.split('\n')
.map((x) => {
if (!x) return [];
const [k, v] = x.split('=');
return [k.trim(), v];
const [k, ...v] = x.split('=');
return [k.trim(), v.join('=')];
})
.filter(([k, v]) => k && v),
);
Expand Down

0 comments on commit f1bbfbe

Please sign in to comment.