Merge branch 'fronkdev' into 'master'

Fixed Address default Filter

See merge request fronk/thetool!1165
This commit is contained in:
Frank Schubert
2025-04-03 15:14:03 +00:00
2 changed files with 2 additions and 2 deletions

View File

@@ -142,7 +142,7 @@
<label class="form-label" for="filter_type">Mandant</label>
<select class="form-control" name="filter[type]" id="filter_type">
<option value="<?=(array_key_exists('type', $filter) && $filter["type"] == "all") ? "selected='selected'" : ""?>">Alle</option>
<option value="xinon" <?=(array_key_exists('type', $filter) && $filter["type"] != "xinon") ? "" : "selected='selected'"?>>Xinon</option>
<option value="systemowner" <?=(array_key_exists('type', $filter) && $filter["type"] != "xinon") ? "" : "selected='selected'"?>>Xinon</option>
<option value="others" <?=(array_key_exists('type', $filter) && $filter["type"] == "others") ? "selected='selected'" : ""?>>Fremd</option>
</select>
</div>