Skip to content

Commit

Permalink
ran prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackbaud-SteveBrush committed Jul 26, 2024
1 parent 07bf641 commit a4d2dae
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions libs/media/src/lib/modules/hero/hero.component.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div
class="sky-hero"
[ngStyle]="{
'background-image': 'url(' + backgroundImageUrl + ')'
'background-image': 'url(' + backgroundImageUrl + ')',
}"
>
<div class="sky-hero-body sky-max-width-container">
Expand All @@ -10,7 +10,7 @@
<div
class="sky-hero-overlay"
[ngStyle]="{
opacity: overlayOpacity
opacity: overlayOpacity,
}"
></div>
</div>
4 changes: 2 additions & 2 deletions libs/media/src/lib/modules/image/image.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class="sky-image"
[alt]="imageAlt"
[ngClass]="{
'sky-image-border': showBorder
'sky-image-border': showBorder,
}"
[src]="imageSource"
/>
Expand All @@ -15,7 +15,7 @@
'sky-image-caption-info sky-text-info': captionType === 'info',
'sky-image-caption-success sky-text-success': captionType === 'success',
'sky-image-caption-warning sky-text-warning': captionType === 'warning',
'sky-image-caption-danger sky-text-danger': captionType === 'danger'
'sky-image-caption-danger sky-text-danger': captionType === 'danger',
}"
>
<ng-container [ngSwitch]="captionType">
Expand Down
2 changes: 1 addition & 1 deletion libs/stache/src/lib/modules/nav/link.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class StacheRouterLinkDirective implements OnChanges, AfterViewInit {
} else {
this.#_stacheRouterLink = Array.isArray(value)
? value.join('/')
: value ?? '';
: (value ?? '');
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[attr.aria-label]="'stache_sidebar_label' | skyLibResources"
[ngClass]="{
'stache-sidebar-closed': !sidebarOpen,
'stache-sidebar-open': sidebarOpen
'stache-sidebar-open': sidebarOpen,
}"
>
<div class="stache-sidebar-buttons">
Expand Down

0 comments on commit a4d2dae

Please sign in to comment.