use assets from the vanilla repo

This commit is contained in:
Lee
2023-12-30 22:43:38 +00:00
parent 1663a127cc
commit 6fd5fdb7fe
6 changed files with 32 additions and 36 deletions

View File

@ -1,12 +1,12 @@
const SORT_OPTIONS = [
{
getName: () => 'Giocatori',
getName: () => 'Players',
sortFunc: (a, b) => b.playerCount - a.playerCount,
highlightedValue: 'player-count'
},
{
getName: (app) => {
return `Picco di ${app.publicConfig.graphDurationLabel}`
return `${app.publicConfig.graphDurationLabel} Peak`
},
sortFunc: (a, b) => {
if (!a.lastPeakData && !b.lastPeakData) {