<button
[disabled]="(!dataConceptSummmaryFlag || dataConceptSummmaryFlag === false) && (!selectedLOBFlag || selectedLOBFlag === false) && (!adsListFlag || adsListFlag === false)"
class="lmn-btn lmn-btn-primary"
aria-label="Update"
(click)="updateSelectedScopes()"
[mtTooltip]="disabledContent"
>
Update
</button>
<ng-container *ngIf="(!dataConceptSummmaryFlag || dataConceptSummmaryFlag === false) && (!selectedLOBFlag || selectedLOBFlag === false) && (!adsListFlag || adsListFlag === false)">
<ng-template #disabledContent>No New Scopes Values Selected</ng-template>
</ng-container>
I attempted to show a tooltip text on hover when the button is disabled based on certain conditions, but unfortunately it did not work as expected. Additionally, I noticed a red close icon appearing when hovering over the button.