From 345c1c978c67a6872b1562a4539aa684676b039d Mon Sep 17 00:00:00 2001 From: Marius Balteanu Date: Mon, 16 May 2022 20:01:02 +0000 Subject: 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 --- app/views/issues/edit.js.erb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'app/views') diff --git a/app/views/issues/edit.js.erb b/app/views/issues/edit.js.erb index 9ccc78ad2..e95336824 100644 --- a/app/views/issues/edit.js.erb +++ b/app/views/issues/edit.js.erb @@ -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 %> \ No newline at end of file -- cgit v1.2.3