receipt: Fix display of notes field
dustin/receipts/pipeline/head This commit looks good Details

Unlike the normal `<textarea>` element, `<sl-textarea>` uses a `value`
attribute to store the prefilled value of the field, rather than a child
text node.
bugfix/ci-buildah
Dustin 2025-05-04 11:23:48 -05:00
parent 79d8d899bb
commit 166d86cf58
1 changed files with 6 additions and 1 deletions

View File

@ -60,7 +60,12 @@
></sl-input> ></sl-input>
</p> </p>
<p> <p>
<sl-textarea label="Notes" name="notes" readonly>{{ notes }}</sl-textarea> <sl-textarea
label="Notes"
name="notes"
value="{{ notes }}"
readonly
></sl-textarea>
</p> </p>
</div> </div>
<div class="photo"> <div class="photo">