Skip to content

Commit

Permalink
Update vehiclesform.php
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlosb committed Apr 1, 2024
1 parent 0d345c3 commit eb33b78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/views/vehiclesform.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@
</div>
<div class="form-group col">
<label for="fueltyp_vhcl"><?= $this->lang->line('fuel_vhcl'); ?></label>
<div class="input-group mb-3 date" name="fueltyp_vhcl" id="fueltyp_vhcl" data-target-input="nearest">
<select class="custom-select" id="inputGroupSelect01">
<div class="input-group mb-3">
<select class="custom-select" name="fueltyp_vhcl" id="fueltyp_vhcl" >
<?php foreach ($fueltypes as $ft) { ?>
<option value="<?= $ft ?>" <?php if ($ft == $fueltyp_vhcl) { echo "SELECTED"; } ?>><?= $this->lang->line($ft); ?></option>
<?php } ?>
Expand Down

0 comments on commit eb33b78

Please sign in to comment.