Move the warning message to near end of the page

Fixes #7661
This commit is contained in:
Martin Hickey 2016-09-20 17:12:45 +01:00
parent 8be70d4c61
commit 14e9bb6c72

View file

@ -24,25 +24,6 @@
</p>
</div>
<div ng-if="editor.conflictDescriptionsLength > 0">
<p>
<i class="fa fa-warning text-warning"></i>
<strong>Field Type Conflict:</strong>
The type of this field changes across indices. It is unavailable for many analysis functions. The indices per type are as follows:
<table class="table">
<thead>
<th> Field Type </th>
<th> Index Names </th>
</thead>
<tbody>
<tr ng-repeat="(type, indices) in editor.field.conflictDescriptions">
<td>{{type}}</td> <td>{{indices}}</td>
</tr>
</tbody>
</table>
</p>
</div>
<div ng-if="editor.field.scripted" class="form-group">
<label>Language</label>
<select
@ -196,6 +177,25 @@
</div>
<div ng-if="editor.conflictDescriptionsLength > 0">
<p>
<i class="fa fa-warning text-warning"></i>
<strong>Field Type Conflict:</strong>
The type of this field changes across indices. It is unavailable for many analysis functions. The indices per type are as follows:
<table class="table">
<thead>
<th> Field Type </th>
<th> Index Names </th>
</thead>
<tbody>
<tr ng-repeat="(type, indices) in editor.field.conflictDescriptions">
<td>{{type}}</td> <td>{{indices}}</td>
</tr>
</tbody>
</table>
</p>
</div>
<div class="form-group">
<button
type="button"