JSFiddle - React, Tailwind, and code Playground
HTML
<div ng-app>
<div ng-controller="TestCtrl">
<select data-ng-model="selectedPipeLine" name="selectedPipeLine" required="required" data-ng-options="obj.name for obj in pipeLinesList">
</select>
{{selectedPipeLine}}
{{selectedPipeLine.otherProperty}}
</div>
</div>
JavaScript
function TestCtrl($scope) {
$scope.pipeLinesList = [{
id: 1,
name: "first",
otherProperty: "alabalanica"
},
{
id: 2,
name: "second",
otherProperty: "nicaalabala"
}
];
};