fix diff to master

This commit is contained in:
ralf 2024-11-06 16:34:29 +01:00
parent 70dbebae41
commit 29481248d1
2 changed files with 0 additions and 24 deletions

View File

@ -303,17 +303,6 @@ export class Et2Favorites extends Et2DropdownButton implements et2_INextmatchHea
Favorite.applyFavorite(this.egw, this.app, this.preferred);
}
/**
* Handle the click from the main button
*
* @param {MouseEvent} event
* @protected
*/
protected _handleClick(event : MouseEvent)
{
this._apply_favorite(this.preferred);
}
/**
* Clicked a radio button
*

View File

@ -178,19 +178,6 @@ export class Et2LinkEntry extends Et2InputWidget(LitElement)
return this._searchNode?.searchOptions;
}
set searchOptions(options)
{
this.updateComplete.then(() =>
{
this._searchNode.searchOptions = options;
});
}
get searchOptions()
{
return this._searchNode?.searchOptions;
}
get _appNode() : Et2LinkAppSelect
{
return this.shadowRoot?.querySelector("et2-link-apps");