]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1520495 followup - Crash count table does not detect uplift links in Markdown...
authorKohei Yoshino <kohei.yoshino@gmail.com>
Wed, 16 Jan 2019 18:08:16 +0000 (13:08 -0500)
committerDylan William Hardison <dylan@hardison.net>
Wed, 16 Jan 2019 18:08:16 +0000 (13:08 -0500)
extensions/BMO/web/js/firefox-crash-table.js

index 4a9d9fcbe2fff76333010b81e3f4878cb6bef61e..6735fa634bcd27ac51da689dcaa9f4aa22c3c103 100644 (file)
@@ -157,7 +157,7 @@ window.addEventListener('DOMContentLoaded', () => {
           let commentTagSelector = "";
           let x = "";
           if (oldWay) {
-            const parts = parentId.value.split("_");
+            const parts = parentId.split("_");
             if (parts.length == 3) {
               const num = parts[2];
               const ctag = "comment_tag_" + num;
@@ -165,7 +165,7 @@ window.addEventListener('DOMContentLoaded', () => {
               x = "x" + String.fromCharCode(160); // &nbsp;
             }
           } else {
-            const parts = parentId.value.split("-");
+            const parts = parentId.split("-");
             if (parts.length == 2) {
               const num = parts[1];
               const ctag = "ctag-" + num;