[Kimchi-devel] [PATCH] UI bug fix: Properly display storage volumes on Storage tab

Aline Manera alinefm at linux.vnet.ibm.com
Mon Sep 1 18:56:04 UTC 2014


While selecting an active storage pool, the storage volumes in it should
be listed.
But commit 1fb4257f changed "hide-content" CSS class to "display: none!important"
which is preveting the storage volumes to be displayed through
.slideDown() function.
Set "style=display:none" to the volumes div to fix it.

Signed-off-by: Aline Manera <alinefm at linux.vnet.ibm.com>
---
 ui/pages/tabs/storage.html.tmpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/pages/tabs/storage.html.tmpl b/ui/pages/tabs/storage.html.tmpl
index 34ccd21..f46632a 100644
--- a/ui/pages/tabs/storage.html.tmpl
+++ b/ui/pages/tabs/storage.html.tmpl
@@ -91,7 +91,7 @@
                 <div class="arrow-down"></div>
             </div>
         </div>
-        <div class="volumes hide-content">
+        <div class="volumes" style="display:none">
            <div id="volume{name}" class="volumeslist" data-name="{name}" ></div>
            <div class="clear"></div>
         </div>
-- 
1.9.3




More information about the Kimchi-devel mailing list