[Kimchi-devel] [PATCH] UI bug fix: Properly display storage volumes on Storage tab
Paulo Ricardo Paz Vital
pvital at linux.vnet.ibm.com
Mon Sep 1 19:50:58 UTC 2014
--
Reviewed-by: Paulo Vital <pvital at linux.vnet.ibm.com>
On Mon, 2014-09-01 at 15:56 -0300, Aline Manera wrote:
> 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>
More information about the Kimchi-devel
mailing list