Skip to content

Commit f171ced

Browse files
authored
Decimal prop fix in json schema bridge (#1413)
1 parent 60080e0 commit f171ced

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/uniforms-bridge-json-schema/src/register.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ import { filterDOMProps } from 'uniforms';
33
// There's no possibility to retrieve them at runtime.
44
declare module 'uniforms' {
55
interface FilterDOMProps {
6+
decimal: never;
67
minCount: never;
78
maxCount: never;
89
}
910
}
1011

11-
filterDOMProps.register('minCount', 'maxCount');
12+
filterDOMProps.register('decimal', 'minCount', 'maxCount');

0 commit comments

Comments
 (0)