summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/toaster/toastergui/static/js/projectapp.js2
-rw-r--r--bitbake/lib/toaster/toastergui/templates/managed_mrb_section.html4
2 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/js/projectapp.js b/bitbake/lib/toaster/toastergui/static/js/projectapp.js
index 0bdc55a733..74471a1a51 100644
--- a/bitbake/lib/toaster/toastergui/static/js/projectapp.js
+++ b/bitbake/lib/toaster/toastergui/static/js/projectapp.js
@@ -339,7 +339,7 @@ projectApp.controller('prjCtrl', function($scope, $modal, $http, $interval, $loc
339 $scope.buildExistingTarget = function(targets) { 339 $scope.buildExistingTarget = function(targets) {
340 var oldTargetName = $scope.targetName; 340 var oldTargetName = $scope.targetName;
341 $scope.targetName = targets.map(function(v,i,a){return v.target}).join(' '); 341 $scope.targetName = targets.map(function(v,i,a){return v.target}).join(' ');
342 $scope.targetNamedBuild(); 342 $scope.buildNamedTarget();
343 $scope.targetName = oldTargetName; 343 $scope.targetName = oldTargetName;
344 } 344 }
345 345
diff --git a/bitbake/lib/toaster/toastergui/templates/managed_mrb_section.html b/bitbake/lib/toaster/toastergui/templates/managed_mrb_section.html
index d4959a0b52..da5a3f7f74 100644
--- a/bitbake/lib/toaster/toastergui/templates/managed_mrb_section.html
+++ b/bitbake/lib/toaster/toastergui/templates/managed_mrb_section.html
@@ -53,8 +53,8 @@
53 <span class="lead{%if not MANAGED or not build.project%} pull-right{%endif%}"> 53 <span class="lead{%if not MANAGED or not build.project%} pull-right{%endif%}">
54 Build time: <a href="{% url 'buildtime' build.pk %}">{{ build.timespent|sectohms }}</a> 54 Build time: <a href="{% url 'buildtime' build.pk %}">{{ build.timespent|sectohms }}</a>
55 </span> 55 </span>
56 {% if MANAGED and build.project %} 56 {% if build.project %}
57 <a class="btn {%if build.outcome == build.SUCCEEDED%}btn-success{%elif build.outcome == build.FAILED%}btn-danger{%else%}btn-info{%endif%} pull-right" onclick="scheduleBuild({% url 'xhr_projectbuild' build.project.id as bpi%}{{bpi|json}}, {{build.project.name|json}}, {{build.get_sorted_target_list|mapselect:'target'|json}})">Run again</a> 57 <button class="btn {%if build.outcome == build.SUCCEEDED%}btn-success{%elif build.outcome == build.FAILED%}btn-danger{%else%}btn-info{%endif%} pull-right" onclick='scheduleBuild({% url 'xhr_projectbuild' build.project.id as bpi%}{{bpi|json}}, {{build.project.name|json}}, {{build.get_sorted_target_list|mapselect:'target'|json}})'>Run again</button>
58 {% endif %} 58 {% endif %}
59 </div> 59 </div>
60 {%endif%} 60 {%endif%}