|
80 | 80 |
|
81 | 81 | <!-- Display if results are present --> |
82 | 82 | <template for:each={searchResultsLocalState} for:item="item" if:true={isExpanded}> |
83 | | - <li key={item.result.id} role="presentation" class="slds-listbox__item"> |
| 83 | + <li key={item.result.id} role="presentation"> |
84 | 84 | <span |
85 | 85 | class={item.classes} |
86 | 86 | role="option" |
|
95 | 95 | ></lightning-icon> |
96 | 96 | </span> |
97 | 97 | <span class="slds-media__body"> |
98 | | - <span class="slds-listbox__option-text slds-listbox__option-text_entity"> |
| 98 | + <span class="slds-listbox__option-text_entity"> |
99 | 99 | <lightning-formatted-rich-text |
100 | 100 | value={item.result.titleFormatted} |
101 | 101 | disable-linkify |
102 | 102 | > |
103 | 103 | </lightning-formatted-rich-text> |
104 | 104 | </span> |
105 | | - <span class="slds-listbox__option-meta slds-listbox__option-meta_entity"> |
| 105 | + <span class="slds-listbox__option-meta"> |
106 | 106 | <lightning-formatted-rich-text |
107 | 107 | value={item.result.subtitleFormatted} |
108 | 108 | disable-linkify |
|
115 | 115 | </template> |
116 | 116 | <!-- Display that there are no results --> |
117 | 117 | <template if:false={isExpanded}> |
118 | | - <li role="presentation" class="slds-listbox__item"> |
| 118 | + <li role="presentation"> |
119 | 119 | <span class="slds-media slds-listbox__option_entity" role="option"> |
120 | 120 | <span if:false={loading} class="slds-media__body">No results.</span> |
121 | 121 | <span if:true={loading} class="slds-media__body">Loading...</span> |
|
137 | 137 | aria-label="Selected Options:" |
138 | 138 | > |
139 | 139 | <template for:each={selection} for:item="item"> |
140 | | - <li key={item.id} role="presentation" class="slds-listbox__item"> |
| 140 | + <li key={item.id} role="presentation"> |
141 | 141 | <lightning-pill |
142 | 142 | label={item.title} |
143 | 143 | title={item.title} |
|
0 commit comments