fix(elasticsearch): fixed query editor issue with elasticsearch

This commit is contained in:
Torkel Ödegaard 2016-05-23 10:14:40 +02:00
parent cfc7710205
commit dfe3806d01

View File

@ -209,7 +209,9 @@ function (_, $, coreModule) {
// needs to call this after digest so
// property is synced with outerscope
$scope.$$postDigest(function() {
$scope.onChange();
$scope.$apply(function() {
$scope.onChange();
});
});
};