mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 17:04:14 +01:00
Add missing backport from 488f01aea9
This commit is contained in:
parent
7297789e79
commit
2d0bb9fda7
@ -324,8 +324,8 @@ var et2_url_ro = /** @class */ (function (_super_1) {
|
|||||||
* @param _value
|
* @param _value
|
||||||
*/
|
*/
|
||||||
et2_url_ro.prototype.set_label = function (_value) {
|
et2_url_ro.prototype.set_label = function (_value) {
|
||||||
this.options.label = _value;
|
if (this.span && this.options.label !== _value) {
|
||||||
if (this.span) {
|
this.options.label = _value;
|
||||||
this.span.text(_value);
|
this.span.text(_value);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -360,9 +360,9 @@ export class et2_url_ro extends et2_valueWidget
|
|||||||
*/
|
*/
|
||||||
set_label(_value)
|
set_label(_value)
|
||||||
{
|
{
|
||||||
this.options.label = _value;
|
if(this.span && this.options.label !== _value)
|
||||||
if(this.span)
|
|
||||||
{
|
{
|
||||||
|
this.options.label = _value;
|
||||||
this.span.text(_value);
|
this.span.text(_value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user