diff --git a/ang/form_processor/actions/crmFormProcessorActions.html b/ang/form_processor/actions/crmFormProcessorActions.html index ea0f65af9c4dba91337d82677710c168e51f806c..da72a55b8a317c4ead38225a00b9593427a4d06a 100644 --- a/ang/form_processor/actions/crmFormProcessorActions.html +++ b/ang/form_processor/actions/crmFormProcessorActions.html @@ -31,22 +31,16 @@ </td> </tr> </tbody> - - <tfoot> - <tr class="addRow"> - <td colspan="4"> - <select class="huge" - crm-ui-id="formProcessorActionsForm.type" - name="type" - ui-jq="select2" - ui-options="{dropdownAutoWidth : true, allowClear: true}" - ng-model="actionType" - ng-options="actionType as title for (actionType, title) in actionTitles"> - <option value="">{{addDropdownLabel ? addDropdownLabel : ts('- Select action type -')}}</option> - </select> - <button crm-icon="fa-check" ng-click="addAction(actionType)">{{addButtonLabel ? addButtonLabel : ts('Add action')}}</button> - </td> - </tr> - </tfoot> </table> +<select class="huge" + crm-ui-id="formProcessorActionsForm.type" + name="type" + ui-jq="select2" + ui-options="{dropdownAutoWidth : true, allowClear: true}" + ng-model="actionType" + ng-options="actionType as title for (actionType, title) in actionTitles" +> + <option value="">{{addDropdownLabel ? addDropdownLabel : ts('- Select action type -')}}</option> +</select> +<button crm-icon="fa-check" ng-click="addAction(actionType)">{{addButtonLabel ? addButtonLabel : ts('Add action')}}</button> </div> diff --git a/ang/form_processor/inputs/crmFormProcessorInputs.html b/ang/form_processor/inputs/crmFormProcessorInputs.html index 1a2f000ba3869b1a2ac2342f295a9f828fe55a52..9a3581b3269a32c20005152f48d18fe291c95a73 100644 --- a/ang/form_processor/inputs/crmFormProcessorInputs.html +++ b/ang/form_processor/inputs/crmFormProcessorInputs.html @@ -31,22 +31,17 @@ </td> </tr> </tbody> - - <tfoot> - <tr class="addRow"> - <td colspan="4"> - <select class="huge" - crm-ui-id="formProcessorInputsForm.type" - name="type" - ui-jq="select2" - ui-options="{dropdownAutoWidth : true, allowClear: true}" - ng-model="inputType" - ng-options="inputType.label for inputType in inputTypes"> - <option value="">{{addDropdownLabel ? addDropdownLabel : ts('- Select input type -')}}</option> - </select> - <button crm-icon="fa-check" ng-click="addInput(inputType)">{{ addButtonLabel ? addButtonLabel : ts('Add input')}}</button> - </td> - </tr> - </tfoot> </table> + + <select class="huge" + crm-ui-id="formProcessorInputsForm.type" + name="type" + ui-jq="select2" + ui-options="{dropdownAutoWidth : true, allowClear: true}" + ng-model="inputType" + ng-options="inputType.label for inputType in inputTypes" + > + <option value="">{{addDropdownLabel ? addDropdownLabel : ts('- Select input type -')}}</option> + </select> + <button crm-icon="fa-check" ng-click="addInput(inputType)">{{ addButtonLabel ? addButtonLabel : ts('Add input')}}</button> </div>