Skip to content

Commit

Permalink
CHE-1369: fix JSON field fetching after fix on server-side
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Garagatyi <agaragatyi@codenvy.com>
  • Loading branch information
Alexander Garagatyi committed Jul 22, 2016
1 parent 368d03c commit 1277068
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ export class CreateProjectCtrl {
getDisplayMachineLog(log) {
log = angular.fromJson(log);
if (angular.isObject(log)) {
return '[' + log.machine + '] ' + log.content;
return '[' + log.machineName + '] ' + log.content;
} else {
return log;
}
Expand Down

0 comments on commit 1277068

Please sign in to comment.