diff --git a/frontend/rust-lib/flowy-grid/src/services/field/type_options/date_type_option.rs b/frontend/rust-lib/flowy-grid/src/services/field/type_options/date_type_option.rs index 2c9ab7c40e..e2b7a09290 100644 --- a/frontend/rust-lib/flowy-grid/src/services/field/type_options/date_type_option.rs +++ b/frontend/rust-lib/flowy-grid/src/services/field/type_options/date_type_option.rs @@ -41,7 +41,7 @@ impl DateTypeOption { } fn fmt_str(&self) -> String { - format!("{} {}", self.date_format.format_str(), self.time_format.format_str()) + format!("{}", self.date_format.format_str()) } }