add s to seconds
This commit is contained in:
parent
4bf6efa8cc
commit
ab52890706
1 changed files with 1 additions and 1 deletions
|
@ -94,7 +94,7 @@ export class DurationPipe implements PipeTransform {
|
||||||
|
|
||||||
transform(call: CallRecord, args?: any): string {
|
transform(call: CallRecord, args?: any): string {
|
||||||
const seconds = call.duration / 1000;
|
const seconds = call.duration / 1000;
|
||||||
return seconds.toFixed(2);
|
return seconds.toFixed(2)+"s";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue