Bug 39086

Summary: Lines incorrectly split
Product: Koha Reporter: Jonathan Druart <jonathan.druart>
Component: Architecture, internals, and plumbingAssignee: Bugs List <koha-bugs>
Status: NEW --- QA Contact: Testopia <testopia>
Severity: enhancement    
Priority: P5 - low CC: dcook
Version: unspecified   
Hardware: All   
OS: All   
Change sponsored?: --- Patch complexity: ---
Documentation contact: Documentation submission:
Text to go in the release notes:
Version(s) released in:
Circulation function:
Bug Depends on: 38664    
Bug Blocks:    

Description Jonathan Druart 2025-02-10 21:29:04 UTC
This is weird:
koha-tmpl/intranet-tmpl/prog/en/includes/filter-orders.inc


-    <li><label for="from">From: </label>
+    <li
+        ><label for="from">From: </label>
         <input type="text" size="10" id="from" name="from" value="[% filters.from_placed_on | html %]" class="flatpickr" data-date_to="to" />
         <div class="hint">[% INCLUDE 'date-format.inc' %]</div>
     </li>
-    <li><label for="to">To: </label>
+    <li
+        ><label for="to">To: </label>

Why aren't they kept on the same line?

I didn't find many occurrences.