We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88e3c9f commit 95093abCopy full SHA for 95093ab
1 file changed
packages/components/src/internal/url/utils.ts
@@ -6,8 +6,10 @@ export function encodeListResolverPath(containerPath: string): string {
6
return ['$CPS', containerPath?.toLowerCase(), '$CPE'].join('');
7
}
8
9
+// Issue 52925, 52119
10
export function encodeFormDataQuote(key: string): string {
11
if (!key)
12
return key;
13
+ // need to replace %22, before replacing " to %22
14
return key?.replaceAll('%22', '%2522').replaceAll('"', '%22');
15
0 commit comments