Skip to content

Commit 8014bc3

Browse files
committed
fix: Change deepnote_big_number_comparison_type to string type for better flexibility
1 parent b25656b commit 8014bc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/notebooks/deepnote/deepnoteSchemas.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const DeepnoteBigNumberMetadataSchema = z.object({
2222
.nullish()
2323
.transform((val) => val ?? null),
2424
deepnote_big_number_comparison_type: z
25-
.enum(['absolute-value', 'percentage-change', 'absolute-change'])
25+
.string()
2626
.nullish()
2727
.transform((val) => val ?? null),
2828
deepnote_big_number_comparison_title: z

0 commit comments

Comments
 (0)