Commit f2661b93 authored by ViolanteCodes's avatar ViolanteCodes
Browse files

adjusted spacing

parent 8dbef56d
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -412,7 +412,9 @@ def issue_detail_view(request, user_identifier, project_slug, gitlab_iid):
        results['notes'].append(note_dict)
    results['notes'].reverse()
    # Generate notes link.
    new_note_link = reverse('create-note', args=[user_identifier, project_slug, gitlab_iid])
    new_note_link = reverse('create-note', args=[
        user_identifier, project_slug, gitlab_iid
        ])
    results['new_note_link'] = new_note_link
    return render(request, 'anonticket/issue_detail.html', {'results': results})