fix cert download issue in index html

This commit is contained in:
Matt Hill
2026-01-29 16:57:12 -07:00
parent 2605d0e671
commit 113b09ad01

View File

@@ -215,9 +215,7 @@ export default class SuccessPage implements AfterViewInit {
.getElementById('cert')
?.setAttribute(
'href',
URL.createObjectURL(
new Blob([this.result!.rootCa], { type: 'application/octet-stream' }),
),
`data:application/x-x509-ca-cert;base64,${this.result!.rootCa}`,
)
const html = this.documentation?.nativeElement.innerHTML || ''