Commit 66e29ac
committed
[cueweb] Encode mailto: spaces as %20 (not +) in Email Artist + Request Cores
- URLSearchParams.toString() encodes spaces as "+", but mailto: per RFC 6068 only treats "%20" as space - so subject + body would arrive in the mail client with literal "+" characters.
- request-cores-dialog: corrupted the padEnd-aligned Layer Name / Minimum Memory / Min Cores table.
- email-artist-dialog: same bug (identical mailto pattern).
- Both now normalize with .replace(/\+/g, "%20") before window.location.href, with a comment citing RFC 6068.1 parent 04e8338 commit 66e29ac
2 files changed
Lines changed: 13 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
139 | 139 | | |
140 | 140 | | |
141 | 141 | | |
142 | | - | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
143 | 148 | | |
144 | 149 | | |
145 | 150 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
208 | 208 | | |
209 | 209 | | |
210 | 210 | | |
211 | | - | |
| 211 | + | |
| 212 | + | |
| 213 | + | |
| 214 | + | |
| 215 | + | |
| 216 | + | |
| 217 | + | |
212 | 218 | | |
213 | 219 | | |
214 | 220 | | |
| |||
0 commit comments