fixed the wrong time display

This commit is contained in:
Vaibhav Surve 2025-11-11 18:07:20 +05:30
parent 3e99fc67a3
commit ee9c94dc86

View File

@ -461,8 +461,6 @@ class _Logs extends StatelessWidget {
final Color Function(String) colorParser;
const _Logs({required this.logs, required this.colorParser});
DateTime _parseTimestamp(DateTime ts) => ts;
@override
Widget build(BuildContext context) {
if (logs.isEmpty) {
@ -496,7 +494,9 @@ class _Logs extends StatelessWidget {
'${updatedBy.lastName.isNotEmpty == true ? updatedBy.lastName[0] : ''}';
final name = '${updatedBy.firstName} ${updatedBy.lastName}';
final timestamp = _parseTimestamp(log.updatedAt);
final timestamp = log.updatedAt
.toUtc()
.add(const Duration(hours: 5, minutes: 30));
final timeAgo = timeago.format(timestamp);
final nextStatusColor = colorParser(log.nextStatus.color);