Merge pull request #3685 from FinnStutzenstein/fixedMotionSlide
Fixed motion slide not showing any diffs
This commit is contained in:
commit
9e2c6a14fa
@ -36,8 +36,9 @@ angular.module('OpenSlidesApp.motions.projector', [
|
|||||||
}, function () {
|
}, function () {
|
||||||
$scope.change_recommendations = [];
|
$scope.change_recommendations = [];
|
||||||
$scope.title_change_recommendation = null;
|
$scope.title_change_recommendation = null;
|
||||||
|
if ($scope.motion) {
|
||||||
MotionChangeRecommendation.filter({
|
MotionChangeRecommendation.filter({
|
||||||
'where': {'motion_version_id': {'==': id}}
|
'where': {'motion_version_id': {'==': $scope.motion.active_version}}
|
||||||
}).forEach(function(change) {
|
}).forEach(function(change) {
|
||||||
if (change.isTextRecommendation()) {
|
if (change.isTextRecommendation()) {
|
||||||
$scope.change_recommendations.push(change);
|
$scope.change_recommendations.push(change);
|
||||||
@ -46,6 +47,7 @@ angular.module('OpenSlidesApp.motions.projector', [
|
|||||||
$scope.title_change_recommendation = change;
|
$scope.title_change_recommendation = change;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
]);
|
]);
|
||||||
|
Loading…
Reference in New Issue
Block a user