Skip to content

Commit 8816bcc

Browse files
committed
Bug 1146806: "new bug" menu has literal "…" instead of a horizontal ellipsis
1 parent 3ac7012 commit 8816bcc

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

extensions/BugModal/web/bug_modal.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -628,45 +628,45 @@ $(function() {
628628
}
629629
},
630630
{
631-
name: '… in this product',
631+
name: '\u2026 in this product',
632632
callback: function() {
633633
window.open('enter_bug.cgi?product=' + encodeURIComponent($('#product').val()), '_blank');
634634
}
635635
},
636636
{
637-
name: '… in this component',
637+
name: '\u2026 in this component',
638638
callback: function() {
639639
window.open('enter_bug.cgi?' +
640640
'product=' + encodeURIComponent($('#product').val()) +
641641
'&component=' + encodeURIComponent($('#component').val()), '_blank');
642642
}
643643
},
644644
{
645-
name: '… that blocks this bug',
645+
name: '\u2026 that blocks this bug',
646646
callback: function() {
647647
window.open('enter_bug.cgi?format=__default__' +
648648
'&product=' + encodeURIComponent($('#product').val()) +
649649
'&blocked=' + BUGZILLA.bug_id, '_blank');
650650
}
651651
},
652652
{
653-
name: '… that depends on this bug',
653+
name: '\u2026 that depends on this bug',
654654
callback: function() {
655655
window.open('enter_bug.cgi?format=__default__' +
656656
'&product=' + encodeURIComponent($('#product').val()) +
657657
'&dependson=' + BUGZILLA.bug_id, '_blank');
658658
}
659659
},
660660
{
661-
name: '… as a clone of this bug',
661+
name: '\u2026 as a clone of this bug',
662662
callback: function() {
663663
window.open('enter_bug.cgi?format=__default__' +
664664
'&product=' + encodeURIComponent($('#product').val()) +
665665
'&cloned_bug_id=' + BUGZILLA.bug_id, '_blank');
666666
}
667667
},
668668
{
669-
name: '… as a clone, in a different product',
669+
name: '\u2026 as a clone, in a different product',
670670
callback: function() {
671671
window.open('enter_bug.cgi?format=__default__' +
672672
'&cloned_bug_id=' + BUGZILLA.bug_id, '_blank');

0 commit comments

Comments
 (0)