1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-20 10:50:08 +03:00

Fix Capacity datastore column width

This commit is contained in:
Daniel Molina 2014-04-23 17:18:11 +02:00
parent 5434bfab72
commit 4a48099e7a

View File

@ -523,7 +523,7 @@ var datastores_tab = {
<th>'+tr("Owner")+'</th>\
<th>'+tr("Group")+'</th>\
<th>'+tr("Name")+'</th>\
<th style="width:25%;">'+tr("Capacity")+'</th>\
<th>'+tr("Capacity")+'</th>\
<th>'+tr("Cluster")+'</th>\
<th>'+tr("Basepath")+'</th>\
<th>'+tr("TM MAD")+'</th>\
@ -1106,10 +1106,11 @@ $(document).ready(function(){
if (Config.isTabEnabled(tab_name)) {
dataTable_datastores = $("#datatable_datastores",main_tabs_context).dataTable({
"bAutoWidth": false,
"aoColumnDefs": [
{ "bSortable": false, "aTargets": ["check"] },
{ "sWidth": "35px", "aTargets": [0] },
{ "sWidth": "200px", "aTargets": [5] },
{ "sWidth": "250px", "aTargets": [5] },
{ "bVisible": true, "aTargets": Config.tabTableColumns(tab_name)},
{ "bVisible": false, "aTargets": ['_all']}
],