It seems that Angularjs ng-show directive interprets the 'N' and 'NO' as falsy values.
In my angular application, I'm displaying data related to a specific country using the following
<div ng-show="countryCode">some code</div>
I was surprised when I figured out that data related to Norway are not shown. And this is because the country code of Norway is 'NO' which is considered as falsy value !!
I don't know if this is a design choice. but if Yes how you deal with this kind of issues
You can reproduce this here
Thank you in advance