Fix display dateformat

This commit is contained in:
2025-04-13 16:43:05 +02:00
parent 3239a075fb
commit b687464d59
6 changed files with 6 additions and 6 deletions

View File

@@ -11,7 +11,7 @@ class DebugLogsPage extends StatefulWidget {
class _DebugLogsPageState extends State<DebugLogsPage> {
Box<SCNLog> logBox = Hive.box<SCNLog>('scn-logs');
static final _dateFormat = DateFormat('yyyy-MM-dd kk:mm');
static final _dateFormat = DateFormat('yyyy-MM-dd HH:mm'); //TODO setting
@override
Widget build(BuildContext context) {

View File

@@ -13,7 +13,7 @@ class DebugRequestsPage extends StatefulWidget {
class _DebugRequestsPageState extends State<DebugRequestsPage> {
Box<SCNRequest> requestsBox = Hive.box<SCNRequest>('scn-requests');
static final _dateFormat = DateFormat('yyyy-MM-dd kk:mm');
static final _dateFormat = DateFormat('yyyy-MM-dd HH:mm'); //TODO setting
@override
Widget build(BuildContext context) {