Skip to content

Commit

Permalink
Fix missing required marker in edit forms (#2443)
Browse files Browse the repository at this point in the history
* Fix missing required marker in edit forms

* Changelog updated
  • Loading branch information
ramonski authored Dec 8, 2023
1 parent 56844a7 commit 535eabb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
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.5.0 (unreleased)
------------------

- #2443 Fix missing required marker in edit forms
- #2441 Fix items count in setupview for lab contacts tile
- #2440 Fix multi Code_128_1x48mm sticker renders only 1 PDF
- #2439 Fix analysis template view shows hidden subfields for sample partitions
Expand Down
2 changes: 1 addition & 1 deletion src/senaite/core/browser/static/bundles/senaite.core.css

Large diffs are not rendered by default.

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion webpack/app/scss/forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,21 @@
}
}

form[name='edit_form'] div.listing-container {
input, select {
@extend .form-control;
width: 100%!important;
}
}

ul.configlets>li>form,
form.rowlike,
form.loginform,
form.senaite-form,
form[name='analysisrequest_add_form'],
form[action*='-controlpanel'],
form[name='sampleheader_form'],
form[name='edit_form'] :not(.ajax-contents-table) div > {
form[name='edit_form'] {
input, select {
width: auto;
}
Expand Down

0 comments on commit 535eabb

Please sign in to comment.