Change labels

This commit is contained in:
Marco van Dijk 2022-04-22 19:13:56 +02:00
parent 2c00caf209
commit a43e03ba43
2 changed files with 5 additions and 5 deletions

View File

@ -386,10 +386,10 @@ const MonthlyGraphs = (obj) => {
dataRow.push({ label: 'Stake', value: '1' }); dataRow.push({ label: 'Stake', value: '1' });
} }
if (totalGraphs && earningsObj) { if (totalGraphs && earningsObj) {
dataRow.push({ label: 'Earnings', value: '2' }); dataRow.push({ label: 'Fee', value: '2' });
} }
if (totalGraphs && broadcasterObj) { if (totalGraphs && broadcasterObj) {
dataRow.push({ label: 'Broadcasters', value: '3' }); dataRow.push({ label: 'DMS', value: '3' });
} }
return ( return (

View File

@ -39,9 +39,9 @@ const MonthlyStats = (obj) => {
transitionTimingFunction="linear" transitionTimingFunction="linear"
color={thisColour} color={thisColour}
data={[ data={[
{ label: 'Summary', value: '1' }, { label: 'Info', value: '1' },
{ label: 'Graphs', value: '2' }, { label: 'Graph', value: '2' },
{ label: 'Orchestrators', value: '3' } { label: 'Score', value: '3' }
]} ]}
/> />
</div> </div>