Skip to content

Commit

Permalink
WIP #264 standard style.
Browse files Browse the repository at this point in the history
  • Loading branch information
finger563 committed Jul 22, 2018
1 parent 8d76558 commit e96887e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/plugins/InstallRuntime/configWidget.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,29 +127,29 @@ define([

// make the user config
var user = {
name: "user",
displayName: "User for " + hostName,
"name": "user",
"displayName": "User for " + hostName,
"description": "Select User for Host deployment or Disabled to exclude host.",
value: users[0] || disabledMessage,
"value": users[0] || disabledMessage,
valueItems: users.concat(disabledMessage),
"valueType": "string"
};

// make the install directory config
var hostInstallTmpl = {
name: "installPath",
displayName: "Install Path for " + hostName,
"name": "installPath",
"displayName": "Install Path for " + hostName,
"description": "Select install location for runtime.",
value: installPath,
"value": installPath,
"valueType": "string"
};

// make the extend directory config
var hostExtendTmpl = {
name: "workspace",
displayName: "ROS Workspace to extend for " + hostName,
"name": "workspace",
"displayName": "ROS Workspace to extend for " + hostName,
"description": "Select workspace to extend.",
value: "/opt/ros/kinetic/",
"value": "/opt/ros/kinetic/",
"valueType": "string"
}

Expand Down

0 comments on commit e96887e

Please sign in to comment.