@ -324,7 +324,7 @@
$('#save_button').prop('disabled', true).css('cursor', 'not-allowed');
// Hide update_div if args.no-update
{% if args.no_update %}
{% if args.no_update or args.release_update %}
$('#update_div').hide()
{% endif %}
@ -371,7 +371,11 @@
buttons: [{
text: 'Add',
action: function () {
$('#addModal').modal('show');
if (form_changed) {
alert('You must save changes before adding a path mapping.')
} else {
}
},
{
@ -394,7 +394,11 @@