fix issue where images were not visible in acl selector after using search

This commit is contained in:
Mario Vavti 2018-05-19 21:21:02 +02:00
parent 23b53cd1ce
commit ef0f195fe8

View File

@ -394,6 +394,10 @@ ACL.prototype.get = function(start, count, search) {
data: postdata, data: postdata,
dataType: 'json', dataType: 'json',
success: that.populate success: that.populate
})
.done(function() {
if(search !== undefined)
datasrc2src('#acl-list-content .list-group-item img[data-src]');
}); });
}; };