Fix canvas extension install links (#2109)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Aaron Powell <me@aaron-powell.com>
This commit is contained in:
James Montemagno
2026-06-23 19:08:25 -07:00
committed by GitHub
parent e737a33955
commit fb1b124ed7
4 changed files with 34 additions and 3 deletions
@@ -104,7 +104,7 @@ export function renderExtensionsHtml(items: RenderableExtension[]): string {
title="Copy install URL"
${installUrl ? "" : "disabled"}
>
Install
Copy URL
</button>
${
sourceUrl
+1 -1
View File
@@ -291,7 +291,7 @@ function setupActionHandlers(list: HTMLElement | null): void {
}
const success = await copyToClipboard(installUrl);
showToast(
success ? "Install URL copied!" : "Failed to copy install URL",
success ? "Extension URL copied!" : "Failed to copy extension URL",
success ? "success" : "error"
);
return;