kimi
2020-05-27 c007f0ca1785db093d48f4846cda82fe8e955765
src/main/resources/static/process/editor-app/configuration/properties/assignment-popup.html
@@ -8,26 +8,26 @@
            <div class="modal-body">
            
               <div class="row row-no-gutter">
                  <div class="form-group">
                  <div class="from-group">
                     <label for="assigneeField">{{'PROPERTY.ASSIGNMENT.ASSIGNEE' | translate}}</label>
                     <input type="text" id="assigneeField" class="form-control" ng-model="assignment.assignee" placeholder="{{'PROPERTY.ASSIGNMENT.ASSIGNEE_PLACEHOLDER' | translate}}" />
                     <input type="text" id="assigneeField" class="from-control" ng-model="assignment.assignee" placeholder="{{'PROPERTY.ASSIGNMENT.ASSIGNEE_PLACEHOLDER' | translate}}" />
                  </div>
               </div>
               
                <div class="row row-no-gutter">
                    <div class="form-group">
                    <div class="from-group">
                       <label for="userField">{{'PROPERTY.ASSIGNMENT.CANDIDATE_USERS' | translate}}</label>
                        <div ng-repeat="candidateUser in assignment.candidateUsers">
                           <input id="userField" class="form-control" type="text" ng-model="candidateUser.value" />
                           <input id="userField" class="from-control" type="text" ng-model="candidateUser.value" />
                           <i class="glyphicon glyphicon-minus clickable-property" ng-click="removeCandidateUserValue($index)"></i>
                           <i ng-if="$index == (assignment.candidateUsers.length - 1)" class="glyphicon glyphicon-plus clickable-property" ng-click="addCandidateUserValue($index)"></i>
                        </div>
                      </div>
            
                    <div class="form-group">
                    <div class="from-group">
                       <label for="groupField">{{'PROPERTY.ASSIGNMENT.CANDIDATE_GROUPS' | translate}}</label>
                        <div ng-repeat="candidateGroup in assignment.candidateGroups">
                            <input id="groupField" class="form-control" type="text" ng-model="candidateGroup.value" />
                            <input id="groupField" class="from-control" type="text" ng-model="candidateGroup.value" />
                            <i class="glyphicon glyphicon-minus clickable-property" ng-click="removeCandidateGroupValue($index)"></i>
                            <i ng-if="$index == (assignment.candidateGroups.length - 1)" class="glyphicon glyphicon-plus clickable-property" ng-click="addCandidateGroupValue($index)"></i>
                        </div>