@fluid-topics/ft-search-result-metadata 1.1.87 → 1.1.89

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.
@@ -135,7 +135,9 @@ class FtSearchResultMetadata extends withDateFormat(withI18n(FtSearchResultCompo
135
135
  ${this.displayLabel ? html `
136
136
  <span part="label">${this.metadataLabel}: </span>
137
137
  ` : nothing}
138
- <span part="values">${this.metadataValue}</span>
138
+ ${this.metadataValue.length === 0 ? nothing : html `
139
+ <span part="values">${this.metadataValue}</span>
140
+ `}
139
141
  `;
140
142
  }
141
143
  get metadataValue() {