Revert it because it has caused a weird issue regarding our nextmatch filters

This commit is contained in:
Hadi Nategh 2020-06-25 14:17:00 +02:00
parent b2c73ed905
commit 8863f28e37
2 changed files with 21 additions and 21 deletions

View File

@ -344,8 +344,8 @@ var et2_selectbox = /** @class */ (function (_super) {
this.setDOMNode(node[0]);
};
et2_selectbox.prototype.doLoadingFinished = function () {
this.set_tags(this.options.tags, this.options.width);
_super.prototype.doLoadingFinished.call(this);
this.set_tags(this.options.tags, this.options.width);
return true;
};
et2_selectbox.prototype.loadFromXML = function (_node) {

View File

@ -484,10 +484,10 @@ export class et2_selectbox extends et2_inputWidget
doLoadingFinished()
{
this.set_tags(this.options.tags, this.options.width);
super.doLoadingFinished();
this.set_tags(this.options.tags, this.options.width);
return true;
}