mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-14 03:55:57 +08:00
fix: having white space is removed (#4025)
This commit is contained in:
parent
a578f9509a
commit
d9950d9223
@ -28,7 +28,7 @@ function HavingFilter({ formula, onChange }: HavingFilterProps): JSX.Element {
|
||||
currentFormValue.value,
|
||||
);
|
||||
|
||||
const columnName = formula.expression.toUpperCase();
|
||||
const columnName = formula.expression.replace(/ /g, '').toUpperCase();
|
||||
|
||||
const aggregatorOptions: SelectOption<string, string>[] = useMemo(
|
||||
() => [{ label: columnName, value: columnName }],
|
||||
|
Loading…
x
Reference in New Issue
Block a user