Explorar el Código

Change default button label to "CONNECT" (#131)

Paulus Schoutsen hace 3 años
padre
commit
78cb70de53
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/install-button.ts

+ 1 - 1
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 &&