How to disable the below div when this length condition satisfies. Please check and help me..
<div *ngIf="setUpWizardForm.get('projectTitle').value && slpPlat && (setUpWizardForm.get('projectTitle').value.length + slpPlat.length) > 50" >
<span
class="error-message"
style="padding-left:15px;"
>
Project Name - maximum of 50 characters allowed
</span>
</div>
<!-- Here want to disable that div in below button. Please help -->
<button
href="javascript:void(0);"
class="slm-user-action-btn"
[disabled]='setUpWizardForm.invalid || !projectNameFilled'
*ngIf="currentSlide==3"
type="button"
(click)="projectConfigured(templateInProcess)"
>
Configure
</button>