fix(882): fixes negative number submission for employees input (#1130)

* fix(882): fixes negative number submission for employees input

* formatting

* fix linting
This commit is contained in:
Srikar Samudrala
2023-08-10 10:55:57 +05:30
committed by GitHub
parent 510c466271
commit 4717f4cb90
5 changed files with 202 additions and 1 deletions

View File

@ -39,6 +39,7 @@ export type ViewFieldDateMetadata = {
export type ViewFieldNumberMetadata = {
type: 'number';
fieldName: string;
isPositive: boolean;
};
export type ViewFieldRelationMetadata = {