We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f66246 commit 17d88f2Copy full SHA for 17d88f2
frontend/appflowy_flutter/lib/plugins/database_view/widgets/row/cells/date_cell/date_editor.dart
@@ -23,9 +23,8 @@ import '../../../../grid/presentation/widgets/common/type_option_separator.dart'
23
import '../../../../grid/presentation/widgets/header/type_option/date.dart';
24
import 'date_cal_bloc.dart';
25
26
-final kToday = DateTime.now();
27
-final kFirstDay = DateTime(kToday.year, kToday.month - 3, kToday.day);
28
-final kLastDay = DateTime(kToday.year, kToday.month + 3, kToday.day);
+final kFirstDay = DateTime.utc(1970, 1, 1);
+final kLastDay = DateTime.utc(2100, 1, 1);
29
30
class DateCellEditor extends StatefulWidget {
31
final VoidCallback onDismissed;
0 commit comments