Skip to content

Commit 969f2bf

Browse files
authored
Fix unicode separate in testcase-details title. (google#1977)
1 parent 038f0d3 commit 969f2bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/appengine/private/components/testcase-detail/testcase-detail.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@
706706
if (this.isStatusReady(info)) {
707707
let title = info.testcase.crash_type;
708708
if (info.crash_state_lines && info.crash_state_lines.length > 0) {
709-
title += ' · ';
709+
title += ' \u00b7 ';
710710
if (info.crash_state_lines[0].length > 60) {
711711
title += info.crash_state_lines[0].substring(0, 57) + '...';
712712
} else {

0 commit comments

Comments
 (0)