Skip to content

Commit

Permalink
chore: fix eslint eqeqeq
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk committed Jul 16, 2021
1 parent 79899f3 commit 858c616
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/abc/onboarding/onboarding.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</span>
<div class="onboarding__btns">
<a
*ngIf="!last && item.skip !== null"
*ngIf="!last && item.skip !== null && item.skip !== undefined"
nz-button
nzType="link"
(click)="to('skip')"
Expand All @@ -38,7 +38,7 @@
<ng-container *nzStringTemplateOutlet="item.prev">{{ item.prev }}</ng-container>
</a>
<a
*ngIf="!last && item.next !== null"
*ngIf="!last && item.next !== null && item.next !== undefined"
nz-button
(click)="to('next')"
nzType="primary"
Expand All @@ -48,7 +48,7 @@
<ng-container *nzStringTemplateOutlet="item.next">{{ item.next }}</ng-container>
</a>
<a
*ngIf="last && item.done !== null"
*ngIf="last && item.done !== null && item.done !== undefined"
nz-button
(click)="to('done')"
nzType="primary"
Expand Down
2 changes: 1 addition & 1 deletion packages/abc/sv/sv.component.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div
class="sv__label"
[class.sv__label-empty]="!label"
[class.sv__label-width]="labelWidth !== null"
[class.sv__label-width]="labelWidth !== null && labelWidth !== undefined"
[style.width.px]="labelWidth"
>
<span class="sv__label-text">
Expand Down

0 comments on commit 858c616

Please sign in to comment.