Skip to content

Commit

Permalink
Merge remote-tracking branch 'u/nightly' into feat-combine
Browse files Browse the repository at this point in the history
  • Loading branch information
qiin2333 committed Mar 5, 2024
1 parent 068b388 commit da8f97d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions docker/archlinux.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ RUN <<_PKGBUILD
set -e
namcap -i PKGBUILD
makepkg -si --noconfirm
rm -f /build/sunshine/pkg/sunshine-debug*.pkg.tar.zst
ls -a
_PKGBUILD

Expand Down
6 changes: 4 additions & 2 deletions src_assets/common/assets/web/pin.html
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@ <h2 id="unpair" class="text-center me-auto">Unpair Clients</h2>
this.config = r
})
this.refreshClients();
},
mounted() {
this.initPinForm();
},
beforeDestroy() { },
Expand Down Expand Up @@ -172,11 +174,11 @@ <h2 id="unpair" class="text-center me-auto">Unpair Clients</h2>
});
},
serialize(listArray = []) {
let nl = this.config.platform === "windows" ? "\r\n" : "\n";
let nl = "\n";
return "[" +
nl +
" " +
listArray.join("," + nl + " ") +
listArray.map(item => JSON.stringify(item)).join("," + nl + " ") +
nl +
"]";
},
Expand Down

0 comments on commit da8f97d

Please sign in to comment.