So with Knockout I can show text based on if a condition returns true or false like this:
data-bind="text: status==0 ? 'Sent' : 'Failed'"
However, I need to add another condition, so that if status==1 then it returns Pending. I guess this probably just a general JS question vs Knockout.
Anyway, is it possible to do something like that? Thanks!