Skip to content

Commit

Permalink
Update DateFormat from yyyy-MM-dd hh:mm to yyyy-MM-dd HH:mm
Browse files Browse the repository at this point in the history
  • Loading branch information
enm10k committed Jun 28, 2024
1 parent bf0dadf commit 5c08621
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/nocodb_sdk/types.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class NocoDateTime {

String toApiValue() => dt.toUtc().toString();

static final DateFormat _format = DateFormat('yyyy-MM-dd hh:mm');
static final DateFormat _format = DateFormat('yyyy-MM-dd HH:mm');
@override
String toString() => _format.format(dt.toLocal());
}
Expand Down

0 comments on commit 5c08621

Please sign in to comment.