admin: Fix add to delegated QA manager
This commit is contained in:
parent
0f9d56fcbf
commit
1adb1807b5
@ -564,6 +564,18 @@ angular.module("FICApp")
|
||||
})
|
||||
|
||||
.controller("AllTeamAssociationsController", function ($scope, $http) {
|
||||
$scope.newdqa = "";
|
||||
$scope.addDelegatedQA = function () {
|
||||
if ($scope.newdqa.length) {
|
||||
if (!$scope.config.delegated_qa)
|
||||
$scope.config.delegated_qa = [];
|
||||
|
||||
$scope.config.delegated_qa.push($scope.newdqa);
|
||||
$scope.saveSettings();
|
||||
$scope.newdqa = "";
|
||||
}
|
||||
}
|
||||
|
||||
$scope.allAssociations = [];
|
||||
$http.get("api/teams-associations.json").then(function (response) {
|
||||
$scope.allAssociations = response.data;
|
||||
@ -625,17 +637,6 @@ angular.module("FICApp")
|
||||
$scope.config.disablesubmitbutton = "";
|
||||
};
|
||||
|
||||
$scope.newdqa = "";
|
||||
$scope.addDelegatedQA = function () {
|
||||
if ($scope.newdqa.length) {
|
||||
if (!$scope.config.delegated_qa)
|
||||
$scope.config.delegated_qa = [];
|
||||
|
||||
$scope.config.delegated_qa.push($scope.newdqa);
|
||||
$scope.saveSettings();
|
||||
$scope.newdqa = "";
|
||||
}
|
||||
}
|
||||
$scope.dropDelegatedQA = function (member) {
|
||||
if (!$scope.config.delegated_qa) {
|
||||
$scope.config.delegated_qa = [];
|
||||
|
@ -306,7 +306,7 @@
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<form ng-submit="addDelegatedQA()" class="card my-3">
|
||||
<div class="card my-3">
|
||||
<div class="card-header">
|
||||
<h3>Managers QA</h3>
|
||||
</div>
|
||||
@ -318,10 +318,12 @@
|
||||
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
|
||||
</button>
|
||||
</li>
|
||||
<li class="row">
|
||||
<div class="col" ng-controller="AllTeamAssociationsController">
|
||||
</ul>
|
||||
|
||||
<form class="row" ng-controller="AllTeamAssociationsController" ng-submit="addDelegatedQA()">
|
||||
<div class="col">
|
||||
<select class="form-control form-control-sm" ng-model="newdqa">
|
||||
<option ng-repeat="(i,m) in allAssociations" ng-value="m">{{ m }}</option>
|
||||
<option ng-selected="newdqa == m" ng-repeat="(i,m) in allAssociations" ng-value="m">{{ m }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col input-group">
|
||||
@ -330,10 +332,9 @@
|
||||
<button class="btn btn-sm btn-success" ng-disabled="!newdqa.length"><span class="glyphicon glyphicon-plus" aria-hidden="true"></span></button>
|
||||
</span>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<form ng-submit="saveChallengeInfo()" class="card my-3">
|
||||
<div class="card-header">
|
||||
|
Loading…
Reference in New Issue
Block a user