Skip to content

Commit

Permalink
Merge pull request #122 from jgiven/fix/everything-broken-in-the-app
Browse files Browse the repository at this point in the history
Fix/everything broken in the app
  • Loading branch information
l-1squared authored Nov 27, 2024
2 parents 0b7cf62 + 3e285de commit 669d69a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion legacy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jgiven-html-app",
"version": "1.1.0",
"version": "1.1.2",
"description": "The HTML App of JGiven and JsGiven",
"homepage": "http://github.com/jgiven/jgiven-html-app",
"main": "src/entry.js",
Expand Down
2 changes: 1 addition & 1 deletion legacy/src/js/controller/chartCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jgivenReportApp.controller('ChartCtrl', function ($scope, $timeout) {
pointBackgroundColor: "rgba(77,83,96,1)"
}

var gray = {
var silver = {
backgroundColor: "rgba(192,192,192,0.5)",
pointBackgroundColor: "rgba(192,192,192,1)"
}
Expand Down
2 changes: 1 addition & 1 deletion legacy/src/js/service/dataService.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function DataService () {

function getPendingScenarios () {
return getScenariosWhere(function (x) {
return x.executionStatus === "PENDING"
return x.executionStatus !== "SUCCESS" && x.executionStatus !== "FAILED" && x.executionStatus !== "ABORTED";
});
}

Expand Down

0 comments on commit 669d69a

Please sign in to comment.