Browse Source
Task/clean up this in carousel component template (#7587)
Clean up
pull/7586/head
Thomas Kaul
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
libs/ui/src/lib/carousel/carousel.component.html
|
|
@ -1,4 +1,4 @@ |
|
|
@if (this.showPrevArrow) { |
|
|
@if (showPrevArrow) { |
|
|
<button |
|
|
<button |
|
|
aria-hidden="true" |
|
|
aria-hidden="true" |
|
|
aria-label="previous" |
|
|
aria-label="previous" |
|
|
@ -17,7 +17,7 @@ |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
@if (this.showNextArrow) { |
|
|
@if (showNextArrow) { |
|
|
<button |
|
|
<button |
|
|
aria-hidden="true" |
|
|
aria-hidden="true" |
|
|
aria-label="next" |
|
|
aria-label="next" |
|
|
|