mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 08:25:03 +02:00
Fix bugs in attribute inheritance
This commit is contained in:
@ -126,7 +126,7 @@ var ClassWithAttributes = /** @class */ (function () {
|
||||
class_prototype = Object.getPrototypeOf(class_prototype);
|
||||
} while (class_prototype !== ClassWithAttributes && n < 50);
|
||||
for (var i = class_tree.length - 1; i >= 0; i--) {
|
||||
attributes = ClassWithAttributes.extendAttributes(attributes, class_tree[i]._attributes);
|
||||
attributes = ClassWithAttributes.extendAttributes(class_tree[i]._attributes, attributes);
|
||||
}
|
||||
return attributes;
|
||||
};
|
||||
|
Reference in New Issue
Block a user