Pushing changes for story/subtask onos-5522
Patchset-2 Fixing code based on review comments on patchset-1
Patchset-3 Fixing code based on review comments on patchset-2

Change-Id: Ib3d0773bb6d2769f0590a99161462b2fe57b4304
diff --git a/web/gui/src/main/webapp/app/view/flow/flow.html b/web/gui/src/main/webapp/app/view/flow/flow.html
index 89036e2..eb1e45a 100644
--- a/web/gui/src/main/webapp/app/view/flow/flow.html
+++ b/web/gui/src/main/webapp/app/view/flow/flow.html
@@ -98,6 +98,8 @@
                 </tr>
 
                 <tr ng-repeat-start="flow in tableData | filter:queryFilter track by $index"
+                    ng-click="selectCallback($event, flow)"
+                    ng-class="{selected: flow.id === selId}"
                     ng-repeat-complete row-id="{{flow.id}}">
                     <td>{{flow.id}}</td>
                     <td>{{flow.appId}}</td>
@@ -120,5 +122,6 @@
         </div>
 
     </div>
+    <flow-details-panel></flow-details-panel>
 
 </div>