Skip to content

Commit 273c4fa

Browse files
committed
fix: update download filename for Lazer configuration export
1 parent c3bd411 commit 273c4fa

File tree

1 file changed

+1
-1
lines changed
  • governance/xc_admin/packages/xc_admin_frontend/components/programs

1 file changed

+1
-1
lines changed

governance/xc_admin/packages/xc_admin_frontend/components/programs/PythLazer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ const PythLazer = ({
385385
encodeURIComponent(JSON.stringify(lazerState, null, 2))
386386
const downloadAnchor = document.createElement('a')
387387
downloadAnchor.setAttribute('href', dataStr)
388-
downloadAnchor.setAttribute('download', `lazer_config_${cluster}.json`)
388+
downloadAnchor.setAttribute('download', `lazer_config.json`)
389389
document.body.appendChild(downloadAnchor) // required for firefox
390390
downloadAnchor.click()
391391
downloadAnchor.remove()

0 commit comments

Comments
 (0)