Fix hassio repositories tooltip (#22610)

This commit is contained in:
Wendelin 2024-10-31 14:43:51 +01:00 committed by GitHub
parent 152b665f2e
commit f4df5852fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 11 additions and 5 deletions

View File

@ -120,9 +120,6 @@ class HassioRepositoriesDialog extends LitElement {
</div> </div>
<div class="delete" slot="end"> <div class="delete" slot="end">
<ha-icon-button <ha-icon-button
.label=${this._dialogParams!.supervisor.localize(
"dialog.repositories.remove"
)}
.disabled=${usedRepositories.includes(repo.slug)} .disabled=${usedRepositories.includes(repo.slug)}
.slug=${repo.slug} .slug=${repo.slug}
.path=${usedRepositories.includes(repo.slug) .path=${usedRepositories.includes(repo.slug)
@ -146,7 +143,11 @@ class HassioRepositoriesDialog extends LitElement {
</ha-md-list-item> </ha-md-list-item>
` `
) )
: html`<ha-md-list-item> No repositories </ha-md-list-item>`} : html`<ha-md-list-item
>${this._dialogParams!.supervisor.localize(
"dialog.repositories.no_repositories"
)}</ha-md-list-item
>`}
</ha-md-list> </ha-md-list>
<div class="layout horizontal bottom"> <div class="layout horizontal bottom">
<ha-textfield <ha-textfield
@ -212,6 +213,7 @@ class HassioRepositoriesDialog extends LitElement {
} }
ha-md-list-item { ha-md-list-item {
position: relative; position: relative;
--md-item-overflow: visible;
} }
`, `,
]; ];

View File

@ -15,6 +15,9 @@ export class HaMdListItem extends MdListItem {
--md-sys-color-on-surface: var(--primary-text-color); --md-sys-color-on-surface: var(--primary-text-color);
--md-sys-color-on-surface-variant: var(--secondary-text-color); --md-sys-color-on-surface-variant: var(--secondary-text-color);
} }
md-item {
overflow: var(--md-item-overflow, hidden);
}
`, `,
]; ];
} }

View File

@ -7774,7 +7774,8 @@
"title": "Manage add-on repositories", "title": "Manage add-on repositories",
"add": "Add", "add": "Add",
"remove": "Remove", "remove": "Remove",
"used": "Repository is in use for installed add-ons and can't be removed." "used": "Repository is in use for installed add-ons and can't be removed.",
"no_repositories": "No repositories"
}, },
"restart_addon": { "restart_addon": {
"title": "Restart {name}?", "title": "Restart {name}?",