@@ -55,71 +66,42 @@ export class HacsCustomRepositoriesDialog extends HacsDialogBase {
${repositories
?.filter((repo) => this.hacs.configuration.categories.includes(repo.category))
.map(
- (repo) => html`
- ${repo.category === "integration"
- ? html`
-
- `
- : html``}
- this._showReopsitoryInfo(String(repo.id))}
- three-line
- >${repo.name}
- ${repo.description}
- Category: ${repo.category}
+ (repo) => html` this._showReopsitoryInfo(String(repo.id))}
+ >
+ ${!this.narrow
+ ? html``
+ : ""}
+ ${repo.name}
+ ${repo.full_name} (${repo.category})
+
this._removeRepository(repo.id)}>
- `
+ `
)}
-
-