Skip to content

Commit

Permalink
fix incorrect placeholder in docs (#17637)
Browse files Browse the repository at this point in the history
  • Loading branch information
navedqb authored Feb 14, 2025
1 parent 9053e87 commit 1339dd3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/showcase/doc/select/loadingstatedoc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ export class LoadingStateDoc implements OnInit {
}

code: Code = {
basic: `<p-select [options]="cities" [(ngModel)]="selectedCity" [loading]="true" optionLabel="name" placeholder="Select a City" class="w-full md:w-56" />`,
basic: `<p-select [options]="cities" [(ngModel)]="selectedCity" [loading]="true" optionLabel="name" placeholder="Loading..." class="w-full md:w-56" />`,

html: `<div class="card flex justify-center">
<p-select [options]="cities" [(ngModel)]="selectedCity" [loading]="true" optionLabel="name" placeholder="Select a City" class="w-full md:w-56" />
<p-select [options]="cities" [(ngModel)]="selectedCity" [loading]="true" optionLabel="name" placeholder="Loading..." class="w-full md:w-56" />
</div>`,

typescript: `import { Component, OnInit } from '@angular/core';
Expand Down

0 comments on commit 1339dd3

Please sign in to comment.