Skip to content
Snippets Groups Projects
Commit a7e84b63 authored by Konstantinos Sideris's avatar Konstantinos Sideris
Browse files

Remove an extra colon from the receipt time

[ci skip]
parent cd54a3e4
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ ReceiptItem::dateFormat(const QDateTime &then) const
if (days == 0)
return QString("Today %1").arg(then.toString("HH:mm"));
else if (days < 2)
return QString("Yesterday %1").arg(then.toString("HH::mm"));
return QString("Yesterday %1").arg(then.toString("HH:mm"));
else if (days < 365)
return then.toString("dd/MM HH:mm");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment