fix: Clearing the currency format has no effect on the chart (#25238)

This commit is contained in:
Michael S. Molina
2023-09-11 08:26:43 -03:00
committed by GitHub
parent 0668d12e3b
commit 6f4e63162f

View File

@@ -107,6 +107,7 @@ export const CurrencyControl = ({
onChange={(symbolPosition: string) => {
onChange({ ...currency, symbolPosition });
}}
onClear={() => onChange({ ...currency, symbolPosition: undefined })}
value={currency?.symbolPosition}
allowClear
{...symbolSelectOverrideProps}
@@ -118,6 +119,7 @@ export const CurrencyControl = ({
onChange={(symbol: string) => {
onChange({ ...currency, symbol });
}}
onClear={() => onChange({ ...currency, symbol: undefined })}
value={currency?.symbol}
allowClear
allowNewOptions