(url)
| 322 | } |
| 323 | |
| 324 | function triggerDownload(url) { |
| 325 | const a = document.createElement("a"); |
| 326 | a.href = url; |
| 327 | a.download = ""; |
| 328 | document.body.appendChild(a); |
| 329 | a.click(); |
| 330 | a.remove(); |
| 331 | } |
| 332 | |
| 333 | function exportMix(kind) { |
| 334 | const id = state.current?.id; |