Verified Commit dd7ad22a authored by Andrei Mateescu's avatar Andrei Mateescu
Browse files

fix: #3612323 Do not use strong element for vertical tabs titles

By: kentr
By: mgifford
By: luissousa21
By: smustgrave
(cherry picked from commit de104d38)
parent f272eda9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@
   */
  Drupal.theme.verticalTab = (settings) => {
    const tab = {};
    tab.title = $('<strong class="vertical-tabs__menu-item-title"></strong>');
    tab.title = $('<span class="vertical-tabs__menu-item-title"></span>');
    tab.title[0].textContent = settings.title;
    tab.item = $(
      '<li class="vertical-tabs__menu-item" tabindex="-1"></li>',