Switch bill notes to textarea (#15749)

This commit is contained in:
Arjit Chaudhary
2024-01-16 04:05:44 +05:30
committed by GitHub
parent 4fa5cb5cfc
commit 651be0c4e1

View File

@@ -103,7 +103,7 @@
<div class="form-group"> <div class="form-group">
<label class="col-sm-4 control-label" for="bill_notes">Notes</label> <label class="col-sm-4 control-label" for="bill_notes">Notes</label>
<div class="col-sm-8"> <div class="col-sm-8">
<input class="form-control input-sm" type="textarea" name="bill_notes" value="<?php echo htmlentities($bill_data['bill_notes']); ?>"> <textarea class="form-control input-sm" name="bill_notes"><?php echo htmlentities($bill_data['bill_notes']); ?></textarea>
</div> </div>
</div> </div>
</fieldset> </fieldset>