Add service pack reference to server and send to daemon

This commit is contained in:
Dane Everitt 2016-11-27 14:50:10 -05:00
parent 238f08f222
commit c4a4b84bd3
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
4 changed files with 61 additions and 8 deletions

View file

@ -451,7 +451,7 @@ $(document).ready(function () {
$.each(data.packs, function (i, item) {
$('#getPack').append('<option value="' + item.uuid + '">' + item.name + ' (' + item.version + ')</option>');
});
$('#getPack').append('<option value="none">No Service Pack</option>').parent().parent().removeClass('hidden');
$('#getPack').append('<option value="0">No Service Pack</option>').parent().parent().removeClass('hidden');
$.each(data.variables, function (i, item) {
var isRequired = (item.required === 1) ? '<span class="label label-primary">Required</span> ' : '';