Skip to content

Commit

Permalink
Fix type error on textbox page (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
timja authored Apr 6, 2023
1 parent 4e90683 commit 0ce1234
Showing 1 changed file with 15 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,13 @@

<p class="jdl-paragraph">${%combobox.description}</p>

<div class="app-component-sample">
<f:entry title="U.S. State" field="state">
<f:combobox />
</f:entry>
</div>
<form>
<div class="app-component-sample">
<f:entry title="U.S. State" field="state">
<f:combobox />
</f:entry>
</div>
</form>

<code>config.jelly:</code>
<pre>
Expand All @@ -69,12 +71,14 @@
<h3>${%dynamicCombobox}</h3>
<p class="jdl-paragraph">${%dynamicCombobox.description}</p>

<f:entry title="Beatles Album" field="album">
<f:select />
</f:entry>
<f:entry title="Title" field="title">
<f:combobox />
</f:entry>
<form>
<f:entry title="Beatles Album" field="album">
<f:select />
</f:entry>
<f:entry title="Title" field="title">
<f:combobox />
</f:entry>
</form>

<code>config.jelly:</code>
<pre>
Expand Down

0 comments on commit 0ce1234

Please sign in to comment.