Bladeren bron

Fix that newly added attachments are lost when the status of the ticket is changed by hiding/showing the fields without removing them (#37053).



git-svn-id: https://svn.redmine.org/redmine/trunk@21580 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/5.1.0
Marius Balteanu 2 jaren geleden
bovenliggende
commit
345c1c978c
1 gewijzigde bestanden met toevoegingen van 8 en 0 verwijderingen
  1. 8
    0
      app/views/issues/edit.js.erb

+ 8
- 0
app/views/issues/edit.js.erb Bestand weergeven

@@ -4,3 +4,11 @@ replaceIssueFormWith('<%= escape_javascript(render :partial => 'form') %>');
<% else %>
$('#log_time').hide();
<% end %>

<% if @issue.notes_addable? %>
$('#add_notes').show();
$('#add_attachments').show();
<% else %>
$('#add_notes').hide();
$('#add_attachments').hide();
<% end %>

Laden…
Annuleren
Opslaan