Merge pull request #989 from jrenaut/patch-1

Fix Javascript typo in tickets.html
This commit is contained in:
Garret Wassermann 2022-01-26 19:07:15 -05:00 committed by GitHub
commit e6fddd154e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)
});
}