浏览代码

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

Paulus Schoutsen 3 年之前
父节点
当前提交
78cb70de53
共有 1 个文件被更改,包括 1 次插入1 次删除
  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 &&