fix tests

This commit is contained in:
Dennis Eichhorn 2022-10-08 21:35:01 +02:00
parent fe862495ba
commit eb8741a899
3 changed files with 9 additions and 9 deletions

View File

@ -4,7 +4,7 @@
<div class="popup">
<ul>
<li>
<input id="id1" type="checkbox">
<input id="id1" type="checkbox" name="">
<ul>
<li>
<label for="id1">
@ -19,7 +19,7 @@
<li><a href="" class="button">PDF</a>
<li><a href="" class="button">Word</a>
<li>
<input id="id2" type="checkbox">
<input id="id2" type="checkbox" name="">
<ul>
<li>
<label for="id2">

View File

@ -4,7 +4,7 @@
<div class="popup">
<ul>
<li>
<input id="id1" type="checkbox">
<input id="id1" type="checkbox" name="">
<ul>
<li>
<label for="id1">
@ -19,7 +19,7 @@
<li><a href="" class="button">PDF</a>
<li><a href="" class="button">Word</a>
<li>
<input id="id2" type="checkbox">
<input id="id2" type="checkbox" name="">
<ul>
<li>
<label for="id2">

View File

@ -7,7 +7,7 @@
<li>Filter
<?php if ($filterType === 'text') : ?>
<li>
<input type="text">
<input type="text" name="<?= $tableId; ?>-filterDropdown-text">
<?php elseif ($filterType === 'select') : ?>
<li>
<select multiple>
@ -25,9 +25,9 @@
<option><
</select>
<?php if ($filterType === 'number') : ?>
<input type="text">
<input type="text" name="<?= $tableId; ?>-filterDropdown-number1">
<?php else : ?>
<input type="date">
<input type="date" name="<?= $tableId; ?>-filterDropdown-date1">
<?php endif; ?>
<li>AND
<li>
@ -39,9 +39,9 @@
<option><
</select>
<?php if ($filterType === 'number') : ?>
<input type="text">
<input type="text" name="<?= $tableId; ?>-filterDropdown-number2">
<?php else : ?>
<input type="date">
<input type="date" name="<?= $tableId; ?>-filterDropdown-date2">
<?php endif; ?>
<?php endif; ?>
<li><label class="button close" for="<?= $tableId; ?>-filterDropdown-<?= $tableFilterCounter; ?>">Cancel</label>