Merge remote-tracking branch 'origin/feat-stats' into feat-stats

This commit is contained in:
Peter Lewis 2024-02-25 21:40:10 +00:00
commit a4da7421c8
No known key found for this signature in database
9 changed files with 224 additions and 86 deletions

View file

@ -53,6 +53,7 @@ new Vue({
latestRelease: null,
isDark: null,
uiDetailedStats: false,
chartOptions: {
chart: {
@ -292,6 +293,15 @@ new Vue({
}).catch(console.error);
}, 1000);
this.api.getUiDetailedStats()
.then((res) => {
this.uiDetailedStats = res;
})
.catch(() => {
console.log('Failed to get ui-detailed-stats');
this.uiDetailedStats = false;
});
Promise.resolve().then(async () => {
const lang = await this.api.getLang();
if (lang !== localStorage.getItem('lang') && i18n.availableLocales.includes(lang)) {
@ -321,6 +331,6 @@ new Vue({
this.currentRelease = currentRelease;
this.latestRelease = latestRelease;
}).catch(console.error);
}).catch((err) => console.error(err));
},
});