Skip to content

Commit

Permalink
Merge pull request #16278 from shaman-apprentice/issue-16277
Browse files Browse the repository at this point in the history
fix#16277 invalid quotes in documentation of HTML attribute
  • Loading branch information
mehmetcetin01140 authored Sep 10, 2024
2 parents 5cebcb2 + 2dec12f commit ed5b191
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/showcase/doc/icons/colordoc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { Code } from '@domain/code';
<div class="card flex justify-content-center gap-3">
<i class="pi pi-check" style="color: slateblue"></i>
<i class="pi pi-times" style="color: green"></i>
<i class="pi pi-search" style="color: 'var(--primary-color)'"></i>
<i class="pi pi-search" style="color: var(--primary-color)"></i>
<i class="pi pi-user" style="color: #708090"></i>
</div>
<app-code [code]="code" [hideToggleCode]="true"></app-code>
Expand All @@ -20,7 +20,7 @@ export class ColorDoc {
code: Code = {
basic: `<i class="pi pi-check" style="color: slateblue"></i>
<i class="pi pi-times" style="color: green"></i>
<i class="pi pi-search" style="color: 'var(--primary-color)'"></i>
<i class="pi pi-search" style="color: var(--primary-color)"></i>
<i class="pi pi-user" style="color: #708090"></i>`
};
}

0 comments on commit ed5b191

Please sign in to comment.