Commit 3fd16cc0 authored by Marcelo Rivera's avatar Marcelo Rivera

(fix): previous shouldn't show for first slide

1 merge request!395[Sprint/HipsterHedgehog] (feat): remove creator frequency from onboarding modal
Pipeline #69077394 passed with stages
in 27 minutes and 57 seconds
......@@ -21,7 +21,7 @@ import { Modal } from "../../../common/components/modal/modal.component";
<ng-template dynamic-host></ng-template>
<div class="m-channelOnboarding__buttons">
<div class="m-channelOnboarding__previous" (click)="service.previous()">
<div class="m-channelOnboarding__previous" (click)="service.previous()" [ngStyle]="{'visibility': service.currentSlide === 0 ? 'hidden' : 'visible'}">
Previous
</div>
<div class="m-channelOnboarding__next" *ngIf="service.currentSlide +1 < service.slides.length"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment