Explorar el Código

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 hace 2 años
padre
commit
345c1c978c
Se han modificado 1 ficheros con 8 adiciones y 0 borrados
  1. 8
    0
      app/views/issues/edit.js.erb

+ 8
- 0
app/views/issues/edit.js.erb Ver fichero

@@ -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 %>

Cargando…
Cancelar
Guardar