Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
#736 avoid quotes on service names
  • Loading branch information
jstrachan committed Dec 18, 2013
1 parent afdd341 commit 5aa6aea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hawtio-web/src/main/webapp/app/fabric/js/apis.ts
Expand Up @@ -25,9 +25,9 @@ module Fabric {
selectWithCheckboxOnly: true,
columnDefs: [
{
field: 'service',
field: 'serviceName',
displayName: 'Service',
cellTemplate: '<div class="ngCellText">{{row.entity.service}}</div>',
cellTemplate: '<div class="ngCellText">{{row.entity.serviceName}}</div>',
//width: 400
width: "***"
},
Expand Down Expand Up @@ -118,6 +118,7 @@ module Fabric {

// lets use proxy if external URL
url = Core.useProxyIfExternal(url);
value["serviceName"] = trimQuotes(value["service"]);
var apidocs = value["apidocs"];
var wadl = value["wadl"];
var wsdl = value["wsdl"];
Expand Down Expand Up @@ -150,7 +151,6 @@ module Fabric {
$scope.responseJson = responseJson;

try {
//console.log("got JSON: " + responseJson);
var json = JSON.parse(responseJson);
createFlatList($scope.apis, json);
Core.$apply($scope);
Expand Down

0 comments on commit 5aa6aea

Please sign in to comment.