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>
|
></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">
|
||||||
|
|
Loading…
Reference in New Issue