From 113b09ad01a65a94ec757e82ff96913ef604dafc Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Thu, 29 Jan 2026 16:57:12 -0700 Subject: [PATCH] fix cert download issue in index html --- web/projects/setup-wizard/src/app/pages/success.page.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/web/projects/setup-wizard/src/app/pages/success.page.ts b/web/projects/setup-wizard/src/app/pages/success.page.ts index e83e756b6..11b311cb4 100644 --- a/web/projects/setup-wizard/src/app/pages/success.page.ts +++ b/web/projects/setup-wizard/src/app/pages/success.page.ts @@ -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 || ''