receipt: Fix display of notes field
dustin/receipts/pipeline/head This commit looks good
Details
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
parent
79d8d899bb
commit
166d86cf58
|
@ -60,7 +60,12 @@
|
|||
></sl-input>
|
||||
</p>
|
||||
<p>
|
||||
<sl-textarea label="Notes" name="notes" readonly>{{ notes }}</sl-textarea>
|
||||
<sl-textarea
|
||||
label="Notes"
|
||||
name="notes"
|
||||
value="{{ notes }}"
|
||||
readonly
|
||||
></sl-textarea>
|
||||
</p>
|
||||
</div>
|
||||
<div class="photo">
|
||||
|
|
Loading…
Reference in New Issue