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

This commit is contained in:
Paulus Schoutsen 2021-11-26 11:56:05 -08:00 committed by GitHub
parent 3a49857db3
commit 78cb70de53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 &&