Skip to content

Commit 9001656

Browse files
committed
FIO-9678: fixed an issue where number value is not displayed is submission grid
1 parent 973e616 commit 9001656

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/SubmissionGrid.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,9 @@ const isFormioPaginationResponse = (
5555
const toString = (value: JSON) => {
5656
switch (typeof value) {
5757
case 'object':
58+
case 'number':
5859
return JSON.stringify(value);
59-
case 'string':
60+
default:
6061
return value;
6162
}
6263
};

0 commit comments

Comments
 (0)