Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
</li>
<li>
<div id="service" class="headNavigItem" ng-if="serviceBool" ui-sref='dashboard.bots' ui-sref-active='activeSection'>
<i class="fa fa-area-chart white"></i> BOTS
<i class="fa fa-delicious white"></i> BOTS
</div>
</li>
<li class="header-right">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@
lib.int =function(){
lib.gridOptions.data=[];
var param={
url:'/blueprints/serviceDelivery'
url:'/blueprints/serviceDelivery/?serviceDeliveryCheck=true'
};
genSevs.promiseGet(param).then(function (result) {
angular.extend(lib.gridOptions.data,result);
});
var param2={
url:'/tasks/serviceDelivery'
url:'/tasks/serviceDelivery/?serviceDeliveryCheck=true'
};
genSevs.promiseGet(param2).then(function (resultTask) {
angular.extend(lib.gridOptions.data,resultTask);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<li>
<div class="liContents">
<i class="icon fa fa-building label-spacing"></i>
<span>Services</span>
<span>Bots</span>
<div data-ng-hide="node.collapsed" data-tree-id="relevancelab" data-analytics-tree-model="node.nodes" data-node-id="rowid" data-node-label="text" data-node-children="nodes">
<ul class="tree-ul">
<li ui-sref="dashboard.bots.library" class="pointer-cursor" ui-sref-active='activeSection'>
Expand Down
2 changes: 1 addition & 1 deletion client/htmls/private/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

<li class="left-projects-links hidden" data-target="#Workspace" navigation="Workspace,Workspace1">
<a class="navigationTab" id="bots" href="#" onclick="setleftnavigation(this,'bots');" >
<i class="fa fa-area-chart white"></i>&nbsp; BOTS
<i class="fa fa-delicious white"></i>&nbsp; BOTS
</a>
</li>

Expand Down