Skip to content

Commit

Permalink
F #5161 Solved bug in attach disk and attach nic
Browse files Browse the repository at this point in the history
  • Loading branch information
abelCoronado93 authored and tinova committed May 22, 2017
1 parent 509b981 commit b1f9a30
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions src/sunstone/public/app/tabs/datastores-tab/datatable.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ define(function(require) {

this.selectOptions = {
"id_index": 1,
"name_index": 4,
"uname_index": 2,
"name_index": 2,
"uname_index": 3,
"select_resource": Locale.tr("Please select a datastore from the list"),
"you_selected": Locale.tr("You selected the following datastore:"),
"select_resource_multiple": Locale.tr("Please select one or more datastores from the list"),
Expand Down
4 changes: 2 additions & 2 deletions src/sunstone/public/app/tabs/images-tab/datatable.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ define(function(require) {
function Table(dataTableId, conf) {
this.selectOptions = {
"id_index": 1,
"name_index": 4,
"uname_index": 2,
"name_index": 2,
"uname_index": 3,
"select_resource": Locale.tr("Please select an image from the list"),
"you_selected": Locale.tr("You selected the following image:"),
"select_resource_multiple": Locale.tr("Please select one or more images from the list"),
Expand Down
4 changes: 2 additions & 2 deletions src/sunstone/public/app/tabs/marketplaceapps-tab/datatable.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ define(function(require) {

this.selectOptions = {
"id_index": 1,
"name_index": 4,
"uname_index": 2,
"name_index": 2,
"uname_index": 3,
"select_resource": Locale.tr("Please select an appliance from the list"),
"you_selected": Locale.tr("You selected the following appliance:"),
"select_resource_multiple": Locale.tr("Please select one or more appliances from the list"),
Expand Down
4 changes: 2 additions & 2 deletions src/sunstone/public/app/tabs/marketplaces-tab/datatable.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ define(function(require) {

this.selectOptions = {
"id_index": 1,
"name_index": 4,
"uname_index": 2,
"name_index": 2,
"uname_index": 3,
"select_resource": Locale.tr("Please select a marketplace from the list"),
"you_selected": Locale.tr("You selected the following marketplace:"),
"select_resource_multiple": Locale.tr("Please select one or more marketplaces from the list"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ define(function(require) {

this.selectOptions = {
"id_index": 1,
"name_index": 4,
"name_index": 2,
"select_resource": Locale.tr("Please select a Service from the list"),
"you_selected": Locale.tr("You selected the following Service:"),
"select_resource_multiple": Locale.tr("Please select one or more Services from the list"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ define(function(require) {

this.selectOptions = {
"id_index": 1,
"name_index": 4,
"name_index": 2,
"select_resource": Locale.tr("Please select a Template from the list"),
"you_selected": Locale.tr("You selected the following Template:"),
"select_resource_multiple": Locale.tr("Please select one or more Templates from the list"),
Expand Down
2 changes: 1 addition & 1 deletion src/sunstone/public/app/tabs/secgroups-tab/datatable.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ define(function(require) {

this.selectOptions = {
"id_index": 1,
"name_index": 4,
"name_index": 2,
"select_resource": Locale.tr("Please select a security group from the list"),
"you_selected": Locale.tr("You selected the following security group:"),
"select_resource_multiple": Locale.tr("Please select one or more security groups from the list"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ define(function(require) {

this.selectOptions = {
"id_index": 1,
"name_index": 4,
"name_index": 2,
"select_resource": Locale.tr("Please select a Template from the list"),
"you_selected": Locale.tr("You selected the following Template:"),
"select_resource_multiple": Locale.tr("Please select one or more Templates from the list"),
Expand Down
4 changes: 2 additions & 2 deletions src/sunstone/public/app/tabs/vnets-tab/datatable.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ define(function(require) {

this.selectOptions = {
"id_index": 1,
"name_index": 4,
"uname_index": 2,
"name_index": 2,
"uname_index": 3,
"select_resource": Locale.tr("Please select a network from the list"),
"you_selected": Locale.tr("You selected the following network:"),
"select_resource_multiple": Locale.tr("Please select one or more networks from the list"),
Expand Down
2 changes: 1 addition & 1 deletion src/sunstone/public/app/tabs/vrouters-tab/datatable.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ define(function(require) {

this.selectOptions = {
"id_index": 1,
"name_index": 4,
"name_index": 2,
"select_resource": Locale.tr("Please select a virtual router from the list"),
"you_selected": Locale.tr("You selected the following virtual router:"),
"select_resource_multiple": Locale.tr("Please select one or more virtual routers from the list"),
Expand Down

0 comments on commit b1f9a30

Please sign in to comment.