Fixed candidate button.
This commit is contained in:
parent
896ac28c30
commit
e2145f9777
@ -288,11 +288,12 @@ angular.module('OpenSlidesApp.assignments.site', ['OpenSlidesApp.assignments'])
|
|||||||
$scope.alert = { type: 'danger', msg: data.detail, show: true };
|
$scope.alert = { type: 'danger', msg: data.detail, show: true };
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
// check if current user is already a candidate (status=1)
|
// check if current user is already a candidate (elected==false)
|
||||||
$scope.isCandidate = function () {
|
$scope.isCandidate = function () {
|
||||||
var check = assignment.assignment_related_users.map( function(candidate) {
|
var check = assignment.assignment_related_users.map( function(candidate) {
|
||||||
if ( candidate.status == 1)
|
if ( !candidate.elected ) {
|
||||||
return candidate.user_id;
|
return candidate.user_id;
|
||||||
|
}
|
||||||
}).indexOf(operator.user.id);
|
}).indexOf(operator.user.id);
|
||||||
if (check > -1)
|
if (check > -1)
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user