diff --git a/src/www/js/app.js b/src/www/js/app.js index 472c6d3d..4a30dc63 100644 --- a/src/www/js/app.js +++ b/src/www/js/app.js @@ -71,7 +71,7 @@ new Vue({ uiTrafficStats: false, uiChartType: 0, - uiShowCharts: localStorage.getItem('uiShowCharts') === "1" ? true : false, + uiShowCharts: localStorage.getItem('uiShowCharts') === '1', uiTheme: localStorage.theme || 'auto', prefersDarkScheme: window.matchMedia('(prefers-color-scheme: dark)'), @@ -189,6 +189,7 @@ new Vue({ // client.transferRx = this.clientsPersist[client.id].transferRxPrevious + Math.random() * 1000; // client.transferTx = this.clientsPersist[client.id].transferTxPrevious + Math.random() * 1000; // client.latestHandshakeAt = new Date(); + // this.requiresPassword = true; this.clientsPersist[client.id].transferRxCurrent = client.transferRx - this.clientsPersist[client.id].transferRxPrevious; this.clientsPersist[client.id].transferRxPrevious = client.transferRx; @@ -211,7 +212,6 @@ new Vue({ name: 'Rx', data: this.clientsPersist[client.id].transferRxHistory, }]; - client.transferTxHistory = this.clientsPersist[client.id].transferTxHistory; client.transferRxHistory = this.clientsPersist[client.id].transferRxHistory; client.transferMax = Math.max(...client.transferTxHistory, ...client.transferRxHistory); @@ -318,7 +318,7 @@ new Vue({ }, toggleCharts() { localStorage.setItem('uiShowCharts', this.uiShowCharts ? 1 : 0); - } + }, }, filters: { bytes, diff --git a/src/www/js/i18n.js b/src/www/js/i18n.js index 82fe64c8..c976a204 100644 --- a/src/www/js/i18n.js +++ b/src/www/js/i18n.js @@ -29,7 +29,7 @@ const messages = { // eslint-disable-line no-unused-vars madeBy: 'Made by', donate: 'Donate', toggleCharts: 'Show/hide Charts', - theme: { dark: 'Dark theme', light: 'Light theme', auto: 'Auto theme' } + theme: { dark: 'Dark theme', light: 'Light theme', auto: 'Auto theme' }, }, ua: { name: 'Ім`я',