Skip to content

Commit

Permalink
code format
Browse files Browse the repository at this point in the history
  • Loading branch information
mehmetcetin01140 committed Nov 13, 2024
1 parent 9da751a commit 86c9d9a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/app/components/listbox/listbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,9 @@ export const LISTBOX_VALUE_ACCESSOR: any = {
<ng-content select="p-footer"></ng-content>
<ng-container *ngTemplateOutlet="footerTemplate; context: { $implicit: modelValue(), options: visibleOptions() }"></ng-container>
</div>
<span *ngIf="isEmpty() " role="status" aria-live="polite" class="p-hidden-accessible">
<span *ngIf="isEmpty()" role="status" aria-live="polite" class="p-hidden-accessible">
<ng-container *ngIf="hasEmptyMessage()">
{{ emptyMessage }}
{{ emptyMessage }}
</ng-container>
<ng-container *ngIf="!hasEmptyMessage()">
{{ selectedMessageText }}
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/multiselect/multiselect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2103,7 +2103,7 @@ export class MultiSelect implements OnInit, AfterViewInit, AfterContentInit, Aft

this.onPanelShow.emit();
break;

case 'void':
this.itemsWrapper = null;
this.onModelTouched();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ interface AutoCompleteCompleteEvent {
export class ShowClearDoc implements OnInit {
countries: any[] | undefined;

countryFormGroup: FormGroup = new FormGroup({ 'country': new FormControl({ name: 'Switzerland', code: 'CH' }) });
countryFormGroup: FormGroup = new FormGroup({ country: new FormControl({ name: 'Switzerland', code: 'CH' }) });

filteredCountries: any[] | undefined;

Expand Down
5 changes: 2 additions & 3 deletions src/app/showcase/doc/carousel/responsivedoc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ import { ProductService } from '@service/productservice';
template: `
<app-docsectiontext>
<p>
Carousel supports specific configuration per screen size with the <i>responsiveOptions</i> property that takes an array of objects where each object defines the max-width <i>breakpoint</i>, <i>numVisible</i> for the number of
items per page and <i>numScroll</i> for number of items to scroll. When <i>responsiveOptions</i> is defined, the <i>numScroll</i> and <i>numVisible</i> properties of the Carousel are used as default when there is breakpoint that
applies.
Carousel supports specific configuration per screen size with the <i>responsiveOptions</i> property that takes an array of objects where each object defines the max-width <i>breakpoint</i>, <i>numVisible</i> for the number of items
per page and <i>numScroll</i> for number of items to scroll. When <i>responsiveOptions</i> is defined, the <i>numScroll</i> and <i>numVisible</i> properties of the Carousel are used as default when there is breakpoint that applies.
</p>
</app-docsectiontext>
<div class="card">
Expand Down

0 comments on commit 86c9d9a

Please sign in to comment.