add s to seconds

This commit is contained in:
Daniel Ponte 2024-12-20 10:02:43 -05:00
parent 4bf6efa8cc
commit ab52890706

View file

@ -94,7 +94,7 @@ export class DurationPipe implements PipeTransform {
transform(call: CallRecord, args?: any): string {
const seconds = call.duration / 1000;
return seconds.toFixed(2);
return seconds.toFixed(2)+"s";
}
}