web ui uptime fix

This commit is contained in:
Ben 2023-09-07 20:38:00 -04:00
parent 9889b22c6b
commit 712c670fc7

View File

@ -8,6 +8,7 @@ export class DateAgoPipe implements PipeTransform {
transform(value: any, args?: any): any {
if (value) {
value = new Date().getTime() - value * 1000;
const seconds = Math.floor((+new Date() - +new Date(value)) / 1000);
if (seconds < 29) // less than 30 seconds ago will show as 'Just now'
return 'Just now';