From 2300c781c3aa0bbdd2e00424557487b0ba690aef Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Fri, 26 Nov 2021 11:46:28 -0800 Subject: [PATCH] Change default button label to "CONNECT" --- src/install-button.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/install-button.ts b/src/install-button.ts index 1abc54c1..36cfa208 100644 --- a/src/install-button.ts +++ b/src/install-button.ts @@ -104,7 +104,7 @@ export class InstallButton extends HTMLElement { slot.name = "activate"; const button = document.createElement("button"); - button.innerText = "INSTALL"; + button.innerText = "CONNECT"; slot.append(button); if ( "adoptedStyleSheets" in Document.prototype &&