We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf1c250 commit 506cc23Copy full SHA for 506cc23
src/packages/core/entity-action/default/entity-action.element.ts
@@ -60,11 +60,11 @@ export class UmbEntityActionDefaultElement<
60
}
61
62
override render() {
63
+ const label = this.manifest?.meta.label ? this.localize.string(this.manifest.meta.label) : this.manifest?.name;
64
+
65
return html`
66
<uui-menu-item
- label=${ifDefined(
- this.manifest?.meta.label ? this.localize.string(this.manifest.meta.label) : this.manifest?.name,
67
- )}
+ label=${ifDefined(this.manifest?.meta.additionalOptions ? label + '...' : label)}
68
href=${ifDefined(this._href)}
69
@click-label=${this.#onClickLabel}
70
@click=${this.#onClick}>
0 commit comments