В моем компоненте я получаю данные из моего сервиса:
ngOnInit() {
this._sharedService.
getReceiptItem().takeUntil(this.ngUnsubscribe).
subscribe(products => this.receiptItems = products);
}
Так как же отключить кнопку, если в моем массиве this.receiptItems
есть какие-либо элементы?
Я пробовал что-то вроде этого:
<div class="top-left">
<button [disabled]="receiptItems.count>0" type="button" [routerLink]="['/administration']"><i class="fas fa-bars fa-fw"></i></button>
</div>
Но, очевидно, это не решение ..
Спасибо