mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-17 20:11:23 +02:00
Etemplate: Fix isDirty() was always false for multi-select (tracker selection)
This commit is contained in:
@@ -220,7 +220,6 @@ var et2_inputWidget = /** @class */ (function (_super) {
|
||||
return this._oldValue;
|
||||
};
|
||||
et2_inputWidget.prototype.isDirty = function () {
|
||||
var _a;
|
||||
var value = this.getValue();
|
||||
if (typeof value !== typeof this._oldValue) {
|
||||
return true;
|
||||
@@ -230,7 +229,7 @@ var et2_inputWidget = /** @class */ (function (_super) {
|
||||
}
|
||||
switch (typeof this._oldValue) {
|
||||
case "object":
|
||||
if (((_a = this._oldValue) === null || _a === void 0 ? void 0 : _a.length) && typeof this._oldValue.length !== "undefined" &&
|
||||
if (typeof this._oldValue.length !== "undefined" &&
|
||||
this._oldValue.length !== value.length) {
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user