mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
Fix link entry with only_app & initial value did not find entry label
This commit is contained in:
parent
b064b84874
commit
8ffbe97884
@ -175,6 +175,12 @@ export class Et2LinkEntry extends Et2InputWidget(FormControlMixin(ValidateMixin(
|
|||||||
set only_app(app)
|
set only_app(app)
|
||||||
{
|
{
|
||||||
this.__only_app = app || "";
|
this.__only_app = app || "";
|
||||||
|
|
||||||
|
// If initial value got set before only_app, it still needs app in pre-render value
|
||||||
|
if(this._value && app)
|
||||||
|
{
|
||||||
|
this._value.app = this.__only_app;
|
||||||
|
}
|
||||||
if(app)
|
if(app)
|
||||||
{
|
{
|
||||||
this.app = app;
|
this.app = app;
|
||||||
|
Loading…
Reference in New Issue
Block a user