Merge branch 'master' into fix-commission-rate-rounding
This commit is contained in:
commit
db2d963d06
@ -91,7 +91,7 @@ const chartConfig = computed(() => {
|
|||||||
offsetY: -15,
|
offsetY: -15,
|
||||||
fontWeight: 500,
|
fontWeight: 500,
|
||||||
fontSize: '2.125rem',
|
fontSize: '2.125rem',
|
||||||
formatter: (value: unknown) => `${rate.value.toFixed(0)}%`,
|
formatter: (value: unknown) => `${rate.value.toFixed(1)}%`,
|
||||||
color: primaryText,
|
color: primaryText,
|
||||||
},
|
},
|
||||||
total: {
|
total: {
|
||||||
@ -99,7 +99,7 @@ const chartConfig = computed(() => {
|
|||||||
label: 'Commission Rate',
|
label: 'Commission Rate',
|
||||||
fontSize: '1rem',
|
fontSize: '1rem',
|
||||||
color: secondaryText,
|
color: secondaryText,
|
||||||
formatter: () => `${rate.value.toFixed(0)}%`,
|
formatter: () => `${rate.value.toFixed(1)}%`,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user