MD-Thematische Liste Mobile-Komponente

Hi Steven,

When a new article is published, two badges appear after the article title. Is this intentionally set up?

I added a piece of JS code to remove one of them, but it doesn’t seem to work consistently, especially when using different browsers.

Do you have any other good suggestions?

document.addEventListener("DOMContentLoaded", function () {
  const badges = document.querySelectorAll(".topic-post-badges .badge-notification.new-topic");
  if (badges.length > 1) {
    // 移除第二个 badge
    badges[1].remove();
  }
});

1 „Gefällt mir“