Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
SoyDiego committed Jun 1, 2024
1 parent 48c4d43 commit 17f4318
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/components/button/button.ts
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export class ButtonDirective implements AfterViewInit, OnDestroy {
constructor(
public el: ElementRef,
@Inject(DOCUMENT) private document: Document
) { }
) {}

ngAfterViewInit() {
DomHandler.addMultipleClasses(this.htmlElement, this.getStyleClass().join(' '));
Expand Down Expand Up @@ -525,7 +525,7 @@ export class Button implements AfterContentInit {

@ContentChildren(PrimeTemplate) templates: QueryList<PrimeTemplate> | undefined;

constructor(public el: ElementRef) { }
constructor(public el: ElementRef) {}

spinnerIconClass(): string {
return Object.entries(this.iconClass())
Expand Down Expand Up @@ -606,4 +606,4 @@ export class Button implements AfterContentInit {
imports: [ButtonDirective, Button],
exports: [ButtonDirective, Button, SharedModule]
})
export class ButtonModule { }
export class ButtonModule {}

0 comments on commit 17f4318

Please sign in to comment.