You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2014/05/05 21:22:02 UTC

git commit: updated refs/heads/4.4 to e28948c

Repository: cloudstack
Updated Branches:
  refs/heads/4.4 a521c02c5 -> e28948ccc


CLOUDSTACK-3932: UI: Fix Truncation issue in secondary storage URL

Signed-off-by: Brian Federle <br...@citrix.com>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/e28948cc
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/e28948cc
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/e28948cc

Branch: refs/heads/4.4
Commit: e28948ccc3f16a6c9c956fc773a26fcfbd58014b
Parents: a521c02
Author: Dariusz Nejbauer <d....@samsung.com>
Authored: Mon May 5 12:14:34 2014 -0700
Committer: Daan Hoogland <da...@onecht.net>
Committed: Mon May 5 21:21:49 2014 +0200

----------------------------------------------------------------------
 ui/scripts/ui/widgets/detailView.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/e28948cc/ui/scripts/ui/widgets/detailView.js
----------------------------------------------------------------------
diff --git a/ui/scripts/ui/widgets/detailView.js b/ui/scripts/ui/widgets/detailView.js
index e083878..c6cf1ca 100644
--- a/ui/scripts/ui/widgets/detailView.js
+++ b/ui/scripts/ui/widgets/detailView.js
@@ -954,7 +954,7 @@
                     return true;
                 }
 
-                var $detail = $('<tr></tr>').addClass(key).appendTo($detailTable);
+                var $detail = $('<tr></tr>').addClass(key + '-row').appendTo($detailTable);
                 var $name = $('<td></td>').addClass('name').appendTo($detail);
                 var $value = $('<span>').appendTo($('<td></td>').addClass('value').appendTo($detail));
                 var content = data[key];