Merge branch 'development' of github.com:gnosis/safe-react into 133-send-improvements

This commit is contained in:
Mikhail Mikheev 2019-10-16 19:20:52 +04:00
commit 0ef723c1bd
1 changed files with 2 additions and 2 deletions

View File

@ -50,8 +50,8 @@ export const minValue = (min: number) => (value: string) => {
return `Should be at least ${min}`
}
export const maxValue = (max: number) => (value: string) => {
if (Number.isNaN(Number(value)) || Number.parseInt(value, 10) <= Number(max)) {
export const maxValue = (max: number | string) => (value: string) => {
if (Number.isNaN(Number(value)) || parseFloat(value, 10) <= parseFloat(max, 10)) {
return undefined
}