Skip to content

Commit

Permalink
UI Components, remove unused name attribute in template
Browse files Browse the repository at this point in the history
(cherry picked from commit ce03bec)
  • Loading branch information
Amstutz committed Jan 30, 2025
1 parent 2528462 commit 1fe6f06
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div></div>
<div class="c-drilldown__filter">
<label for='{ID_FILTER}' class="control-label">{LABEL}</label>
<input id='{ID_FILTER}' type="text" name='{NAME}' class="form-control" />
<input id='{ID_FILTER}' type="text" class="form-control" />
</div>
<div class="c-drilldown__backnav">
{BACKNAV}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public function testRendering(Drilldown $slate): void
<div></div>
<div class="c-drilldown__filter">
<label for=\'id_3\' class="control-label">filter_nodes_in</label>
<input id=\'id_3\' type="text" name=\'\' class="form-control" />
<input id=\'id_3\' type="text" class="form-control" />
</div>
<div class="c-drilldown__backnav">
<button class="btn btn-bulky" id="id_1" aria-label="back">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div></div>
<div class="c-drilldown__filter">
<label for='id_3' class="control-label">filter_nodes_in</label>
<input id='id_3' type="text" name='' class="form-control" />
<input id='id_3' type="text" class="form-control" />
</div>
<div class="c-drilldown__backnav">
<button class="btn btn-bulky" id="id_1" aria-label="back">
Expand Down

0 comments on commit 1fe6f06

Please sign in to comment.