chore: bump web client deps (#1698)

* chore: bump web client dependencies
This commit is contained in:
Charles Kerr
2021-05-19 08:43:46 -05:00
committed by GitHub
parent 95a45b0bad
commit d2473f4c2f
17 changed files with 2148 additions and 2719 deletions

View File

@@ -318,7 +318,7 @@ export class OverflowMenu extends EventTarget {
select.addEventListener('change', (event_) => {
const { value } = event_.target;
console.log(event_);
if (event_.target.value === unlimited) {
if (value === unlimited) {
this.remote.savePrefs({ [RPC._UpSpeedLimited]: false });
} else {
this.remote.savePrefs({
@@ -361,7 +361,7 @@ export class OverflowMenu extends EventTarget {
select.addEventListener('change', (event_) => {
const { value } = event_.target;
console.log(event_);
if (event_.target.value === unlimited) {
if (value === unlimited) {
this.remote.savePrefs({ [RPC._DownSpeedLimited]: false });
} else {
this.remote.savePrefs({
@@ -460,7 +460,8 @@ export class OverflowMenu extends EventTarget {
e.textContent = 'Source Code';
options.append(e);
Object.values(actions).forEach(this._updateElement.bind(this));
this._updateElement = this._updateElement.bind(this);
return { actions, elements, root };
}
}