I have a table where I am repeating over an array of objects. Within the object, there is a nested object, like so:
[
{"Object1":
{"Sub_obj" : {}
}
},
{"Object2":
{"Sub_obj" :
{"Name" : "Jane"}
}
}
]
I want to ng-hide
the table row where "Sub_obj"
is empty. How can I achieve this? I tried ng-hide=!Sub_obj
, but that doesn't work.