object-table icon indicating copy to clipboard operation
object-table copied to clipboard

getting error `Uncaught TypeError: Cannot read property '$$hashKey' of undefined(…)`

Open GuyMograbi opened this issue 9 years ago • 0 comments

I traced the source to be in objectTableCtrl

 $scope.ifSelected = function(item) {

      if (!!$scope.selectedModel && $scope.select === 'multiply') {
        return ctrl._containsInSelectArray(item);
      }else {
        return item.$$hashKey == $scope.selectedModel.$$hashKey;
      }
    };

I will have a PR soon

GuyMograbi avatar Jul 14 '16 05:07 GuyMograbi