fix(explore): wrong error message in conditional formatting (#15732)

This commit is contained in:
Kamil Gabryjelski
2021-07-16 18:02:12 +02:00
committed by GitHub
parent fe68e45f52
commit 71924eb40b

View File

@@ -102,9 +102,7 @@ export const FormattingPopoverContent = ({
return Promise.resolve();
}
return Promise.reject(
new Error(
t('This value should be smaller than the right target value'),
),
new Error(t('This value should be greater than the left target value')),
);
},
[],