Skip to content

Commit 1a67b18

Browse files
author
Daniel Herzog
committed
Fix for DFL-3301: No space between value and unit in "Duration"
1 parent f4c6db8 commit 1a67b18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/network/network_view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ cls.NetworkLogView = function(id, name, container_class, html, default_handler)
306306
getter: function(entry) { return entry.duration },
307307
renderer: function(entry) {
308308
var dur = entry.duration;
309-
return (dur && dur.toFixed(2) + "ms") || "";
309+
return (dur && dur.toFixed(2) + " ms") || "";
310310
}
311311
},
312312
graph: {

0 commit comments

Comments
 (0)