Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Changelog
2.7.0 (unreleased)
------------------

- #2960 Set multipart enctype on the sample header form so file uploads persist
- #2953 Fix IClientAwareMixin interface mismatch breaking client access on DX content
- #2955 Defer workflow transition lookup with a React content-menu component
- #2954 Declare i18n:domain on duration widget templates
Expand Down
3 changes: 2 additions & 1 deletion src/senaite/core/browser/viewlets/templates/sampleheader.pt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
<form id="senaite-sampleheader-form"
name="sampleheader_form"
class="senaite-form"
method="post" novalidate>
method="post" novalidate
enctype="multipart/form-data">

<!-- Hidden fields -->
<input type="hidden" name="sampleheader_form_submitted" value="1" />
Expand Down
Loading