Skip to content

Commit

Permalink
Issue #23 : SAN Adapters Listing is not proper on UI
Browse files Browse the repository at this point in the history
This patch fixes the issue by adjusting the width of columns
of the table which displays SAN Adapters

Signed-off-by: Harshal Patil <harshalp@linux.vnet.ibm.com>
  • Loading branch information
Harshal Patil authored and danielhb committed Jan 22, 2016
1 parent cfb2191 commit ed6b494
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ui/js/host-storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,32 +180,32 @@ ginger.loadSanAdapters = function() {
"column-id": 'name',
"type": 'string',
"identifier": true,
"width": "7%",
"width": "5%",
"title": i18n['GINTITLE0001M']
}, {
"column-id": 'wwpn',
"type": 'string',
"width": "15%",
"width": "14%",
"title": i18n['GINTITLE0007M']
}, {
"column-id": 'wwnn',
"type": 'string',
"width": "15%",
"width": "13.5%",
"title": i18n['GINTITLE0008M']
}, {
"column-id": 'state',
"type": 'string',
"width": "7%",
"width": "4.5%",
"title": i18n['GINTITLE0009M']
}, {
"column-id": 'speed',
"type": 'string',
"width": "6%",
"width": "4.5%",
"title": i18n['GINTITLE0011M']
}, {
"column-id": 'symbolic_name',
"type": 'string',
"width": "45%",
"width": "58.5%",
"title": i18n['GINTITLE0012M']
}];
} else {
Expand Down

0 comments on commit ed6b494

Please sign in to comment.