From 761e06220a9506504e563c7cae84730f76828204 Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Tue, 24 Sep 2024 13:01:10 -0400 Subject: [PATCH] remove title --- docs/pages/resources/changelog.md | 4 ++++ src/components/relative-time/relative-time.component.ts | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/pages/resources/changelog.md b/docs/pages/resources/changelog.md index f78dc767..8782e499 100644 --- a/docs/pages/resources/changelog.md +++ b/docs/pages/resources/changelog.md @@ -12,6 +12,10 @@ Components with the Experimental bad New versions of Shoelace are released as-needed and generally occur when a critical mass of changes have accumulated. At any time, you can see what's coming in the next release by visiting [next.shoelace.style](https://next.shoelace.style). +## Next + +- Fixed a bug in `` where the title attribute would show with redundant info [#2184] + ## 2.17.1 - Fixed a bug in `` not applying the mutator when loading multiple icons of the same name from a spritesheet. [#2178] diff --git a/src/components/relative-time/relative-time.component.ts b/src/components/relative-time/relative-time.component.ts index 4eb70c2e..4fa33f33 100644 --- a/src/components/relative-time/relative-time.component.ts +++ b/src/components/relative-time/relative-time.component.ts @@ -99,7 +99,7 @@ export default class SlRelativeTime extends ShoelaceElement { this.updateTimeout = window.setTimeout(() => this.requestUpdate(), nextInterval); } - return html` `; + return html` `; } }