diff --git a/frontend/src/pages/org/browser-profiles-detail.ts b/frontend/src/pages/org/browser-profiles-detail.ts index f537a6b0..fdb861c5 100644 --- a/frontend/src/pages/org/browser-profiles-detail.ts +++ b/frontend/src/pages/org/browser-profiles-detail.ts @@ -300,7 +300,7 @@ export class BrowserProfilesDetail extends LiteElement { name="pencil" > ${msg("Edit Name & Description")}${msg("Edit Metadata")}
  • ${data.name} -
    -
    - ${data.description} ${data.description} ${data.description} - ${data.description} ${data.description} ${data.description} - ${data.description} -
    -
    + ${data.description + ? html`
    +
    ${data.description}
    +
    ` + : nothing}
    ${data.origins.join(", ")} - ${this.renderActions(data)} + + ${this.renderActions(data)} + `; };