Commit d6f6a5fcde235c8e0f6a72c36e5c9a5a6a638964

Authored by Andrew Buss
1 parent 688e5fe71b

correctly add card to empty col

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

scripts/FeedController.js View file @ d6f6a5f
... ... @@ -63,7 +63,7 @@
63 63 console.log('adding card');
64 64 for (i = 0; i < $scope.cardCols.length; i++) {
65 65 if ($scope.cardCols.length == 0) {
66   - $scope.cardCols.unshift(card);
  66 + $scope.cardCols[i].unshift(card);
67 67 return;
68 68 }
69 69 }