I have a div based on switch but in one particular case even when switch case will be true I need to display another link based on different condition. Can some one suggest me any ideas ?
<div ng-switch="hasUrl">
<a ng-switch-when="true && row.id.indexOf(:) < 0" href="{{url + row.id}}">
{{getName(row)}}
</a>
<a ng-switch-default href=".......">
{{getName(row)}}
</a>
</div>