From 95d1d88589b32b54ea473708bd590608917d3b5f Mon Sep 17 00:00:00 2001 From: Chris Poucet Date: Tue, 9 Apr 2024 15:25:30 +0200 Subject: Fix a bug with paper-tooltip. We need to set properties, not attributes for paper-tooltip. Google-Bug-Id: b/333416564 Release-Notes: skip Change-Id: I48d41184d10aa0b2fd719717c38664792fa8bc54 (cherry picked from commit 4f7449246c08c9d6066ebbf5dca54423d07a9afc) --- polygerrit-ui/app/elements/checks/gr-checks-results.ts | 4 ++-- polygerrit-ui/app/elements/checks/gr-checks-results_test.ts | 9 +-------- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/polygerrit-ui/app/elements/checks/gr-checks-results.ts b/polygerrit-ui/app/elements/checks/gr-checks-results.ts index 848948f05d..e1604cf38a 100644 --- a/polygerrit-ui/app/elements/checks/gr-checks-results.ts +++ b/polygerrit-ui/app/elements/checks/gr-checks-results.ts @@ -495,7 +495,7 @@ export class GrResultRow extends LitElement { return html`
${label} ${valueStr} - + The check result has (probably) influenced this label vote.
@@ -607,7 +607,7 @@ export class GrResultRow extends LitElement { @click=${(e: MouseEvent) => this.tagClick(e, tag.name)} > ${tag.name} - + ${tag.tooltip ?? 'A category tag for this check result. Click to filter.'} diff --git a/polygerrit-ui/app/elements/checks/gr-checks-results_test.ts b/polygerrit-ui/app/elements/checks/gr-checks-results_test.ts index 934e9585dd..15176b0c40 100644 --- a/polygerrit-ui/app/elements/checks/gr-checks-results_test.ts +++ b/polygerrit-ui/app/elements/checks/gr-checks-results_test.ts @@ -45,12 +45,7 @@ suite('gr-result-row test', () => { /* HTML */ `
test-label +1 - + The check result has (probably) influenced this label vote.
@@ -92,7 +87,6 @@ suite('gr-result-row test', () => {