We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3bd411 commit 273c4faCopy full SHA for 273c4fa
governance/xc_admin/packages/xc_admin_frontend/components/programs/PythLazer.tsx
@@ -385,7 +385,7 @@ const PythLazer = ({
385
encodeURIComponent(JSON.stringify(lazerState, null, 2))
386
const downloadAnchor = document.createElement('a')
387
downloadAnchor.setAttribute('href', dataStr)
388
- downloadAnchor.setAttribute('download', `lazer_config_${cluster}.json`)
+ downloadAnchor.setAttribute('download', `lazer_config.json`)
389
document.body.appendChild(downloadAnchor) // required for firefox
390
downloadAnchor.click()
391
downloadAnchor.remove()
0 commit comments