Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed #9614 InputText documentation wrong usage for i element #9615

Merged
merged 1 commit into from
Dec 7, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/app/showcase/components/inputtext/inputtextdemo.html
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,12 @@ <h5>Icons</h5>
or <i>p-input-icon-left</i> class depending on the icon location.</p>
<app-code lang="markup" ngNonBindable ngPreserveWhitespaces>
&lt;span class="p-input-icon-left"&gt;
&lt;i class="pi pi-search" /&gt;
&lt;i class="pi pi-search"&gt;&lt;/i&gt;
&lt;input type="text" pInputText [(ngModel)]="value1" placeholder="Search"&gt;
&lt;/span&gt;

&lt;span class="p-input-icon-right"&gt;
&lt;i class="pi pi-spin pi-spinner" /&gt;
&lt;i class="pi pi-spin pi-spinner"&gt;&lt;/i&gt;
&lt;input type="text" pInputText [(ngModel)]="value2" &gt;
&lt;/span&gt;
</app-code>
Expand Down