This commit is contained in:
Timothy Hobbs 2022-01-27 10:27:49 +01:00
parent e6fddd154e
commit 17a1e064e6

View File

@ -239,7 +239,7 @@ $(document).ready(function() {
$('#id_preset').change(function() {
preset = $('#id_preset').val();
if (preset != '') {
$.get("{% url 'helpdesk:raw' " + preset + " %}?id=" + preset, function(data) {
$.get("{% url 'helpdesk:raw' 'preset' %}?id=" + preset, function(data) {
$("#commentBox").val(data)
});
}