mirror of
https://github.com/apache/superset.git
synced 2026-06-07 16:49:17 +00:00
fix: Clearing the currency format has no effect on the chart (#25238)
This commit is contained in:
committed by
GitHub
parent
0668d12e3b
commit
6f4e63162f
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user