Remove the bug-report link from code-owners

The bug-report link had been added to ease the feedback process during
the code owners rollout, but since code owners is pretty mature by now
it's no longer needed.

Change I1027d4aa7 already removed the link in the master branch, but the
code in the stable-3.3 looks slightly different, so we can't cherry-pick
that change.

Signed-off-by: Edwin Kempin <ekempin@google.com>
Change-Id: Ia226ec473e02c3fd513f37374ef30f7afc0ceded
diff --git a/ui/suggest-owners-trigger.js b/ui/suggest-owners-trigger.js
index 97f616d..b2273ee 100644
--- a/ui/suggest-owners-trigger.js
+++ b/ui/suggest-owners-trigger.js
@@ -56,9 +56,6 @@
           [[computeButtonText(model.showSuggestions)]]
         </gr-button>
         <span>
-          <a on-click="_reportBugClick" href="https://bugs.chromium.org/p/gerrit/issues/entry?template=code-owners-plugin" target="_blank">
-            <iron-icon icon="gr-icons:bug" title="report a problem"></iron-icon>
-          </a>
           <a on-click="_reportDocClick" href="https://gerrit.googlesource.com/plugins/code-owners/+/master/resources/Documentation/how-to-use.md" target="_blank">
             <iron-icon icon="gr-icons:help-outline" title="read documentation"></iron-icon>
           </a>
@@ -105,10 +102,6 @@
   _reportDocClick() {
     this.reporting.reportInteraction('code-owners-doc-click');
   }
-
-  _reportBugClick() {
-    this.reporting.reportInteraction('code-owners-bug-click');
-  }
 }
 
 customElements.define(SuggestOwnersTrigger.is, SuggestOwnersTrigger);