From a19536d525e4fcf42e236f53ca64667e9fa7c638 Mon Sep 17 00:00:00 2001 From: appflowy Date: Mon, 11 Apr 2022 21:34:14 +0800 Subject: [PATCH] chore: disable time format temporarily --- .../src/services/field/type_options/date_type_option.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()) } }