Bug 39084 - Unnecessary spaces added (actually preserved) by the tidy all work
Summary: Unnecessary spaces added (actually preserved) by the tidy all work
Status: NEW
Alias: None
Product: Koha
Classification: Unclassified
Component: Architecture, internals, and plumbing (show other bugs)
Version: unspecified
Hardware: All All
: P5 - low enhancement
Assignee: Bugs List
QA Contact: Testopia
URL:
Keywords:
Depends on: 38664
Blocks:
  Show dependency treegraph
 
Reported: 2025-02-10 20:28 UTC by Jonathan Druart
Modified: 2025-02-10 21:10 UTC (History)
0 users

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:
Circulation function:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jonathan Druart 2025-02-10 20:28:50 UTC
Should not hurt but those can be removed:

-                <button class="btn btn-default dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
-                    <i class="fa fa-plus"></i> New authority
-                </button>
+                <button class="btn btn-default dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false"> <i class="fa fa-plus"></i> New authority </button>

We don't need the space before the i tag.
Comment 1 Jonathan Druart 2025-02-10 20:46:32 UTC
koha-tmpl/intranet-tmpl/prog/en/includes/clubs-table.inc

-                <td>
-                    [% c.club_enrollments.count | html %]
-                </td>
+                <td> [% c.club_enrollments.count | html %] </td>
Comment 2 Jonathan Druart 2025-02-10 20:52:06 UTC
koha-tmpl/intranet-tmpl/prog/en/includes/header.inc

-                                    <brand>
-                                        [% Branches.GetLoggedInBranchname | html %]
-                                    </brand>
+                                    <brand> [% Branches.GetLoggedInBranchname | html %] </brand>
Comment 3 Jonathan Druart 2025-02-10 20:53:56 UTC
koha-tmpl/intranet-tmpl/prog/en/includes/ill-list-table.inc

-    <tbody id="illview-body">
-    </tbody>
+    <tbody id="illview-body"> </tbody>
Comment 4 Jonathan Druart 2025-02-10 21:10:32 UTC
koha-tmpl/intranet-tmpl/prog/en/modules/admin/additional-fields.tt

-                                    <td>
-                                        [% IF field.repeatable %]Yes[% ELSE %]No[% END %]
-                                    </td>
+                                <td> [% IF field.repeatable %]Yes[% ELSE %]No[% END %] </td>