From 78cb70de53445e4acf06370cc75766bbb9c3b256 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Fri, 26 Nov 2021 11:56:05 -0800 Subject: [PATCH] Change default button label to "CONNECT" (#131) --- 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 1abc54c..36cfa20 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 &&