Can I make the code in ng-model work anyhow, as I need to show the first as well as the last name?
What I basically want is to turn this
{{currentInventory.assigned.first_name + ' ' + currentInventory.assigned.last_name}}
into this:
ng-model="currentInventory.assigned.first_name + ' ' + currentInventory.assigned.last_name"