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

Bug #3920: Set size column to align left

This commit is contained in:
Carlos Martín 2015-09-01 17:47:23 +02:00
parent ee3146315d
commit 87bdaa5a67
2 changed files with 2 additions and 2 deletions

View File

@ -339,7 +339,7 @@ class OneImageHelper < OpenNebulaHelper::OneHelper
d["CHILDREN"]
end
column :SIZE, "", :right, :size=>8 do |d|
column :SIZE, "", :left, :size=>8 do |d|
if d["SIZE"]
OpenNebulaHelper.unit_to_str(
d['SIZE'].to_i,

View File

@ -1027,7 +1027,7 @@ class OneVMHelper < OpenNebulaHelper::OneHelper
d["CHILDREN"]
end
column :SIZE, "", :right, :size=>12 do |d|
column :SIZE, "", :left, :size=>12 do |d|
if d["SIZE"]
size = OpenNebulaHelper.unit_to_str(
d['SIZE'].to_i,