Skip to content

Commit

Permalink
chore: update typescript date type to string (picahq#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulkr authored Sep 3, 2024
1 parent 8760583 commit 454dddf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integrationos-domain/src/domain/schema/common_model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ impl DataType {
DataType::String => "string".into(),
DataType::Number => "number".into(),
DataType::Boolean => "boolean".into(),
DataType::Date => "Date".into(),
DataType::Date => "string".into(),
DataType::Enum { reference, .. } => {
if reference.is_empty() {
enum_name.pascal_case()
Expand Down

0 comments on commit 454dddf

Please sign in to comment.