@internetarchive/collection-browser 3.3.4-alpha-webdev7761.2 → 3.3.4-alpha-webdev7761.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1059,9 +1059,7 @@ let CollectionBrowser = class CollectionBrowser extends LitElement {
1059
1059
  </option>
1060
1060
  `;
1061
1061
  const makeShowOption = (show) => html `
1062
- <option ?selected=${this.selectedTVShow === show}>
1063
- ${show}
1064
- </option>
1062
+ <option ?selected=${this.selectedTVShow === show}>${show}</option>
1065
1063
  `;
1066
1064
  const loadingIndicator = html `
1067
1065
  <img src="https://archive.org/images/loading.gif" />
@@ -1093,9 +1091,7 @@ let CollectionBrowser = class CollectionBrowser extends LitElement {
1093
1091
  <option value="" ?selected=${!this.selectedTVShow}>
1094
1092
  ${msg('Filter by Show')}
1095
1093
  </option>
1096
- ${this.shouldPopulateShows
1097
- ? map(shows, makeShowOption)
1098
- : nothing}
1094
+ ${this.shouldPopulateShows ? map(shows, makeShowOption) : nothing}
1099
1095
  </select>
1100
1096
  ${loadingIndicator}
1101
1097
  </div>