You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by bf...@apache.org on 2013/10/24 20:46:20 UTC

git commit: updated refs/heads/4.2 to be99da8

Updated Branches:
  refs/heads/4.2 7c3a7fe31 -> be99da8d6


Network details: remove font tag from field value

Embedded HTML is not supported in detail view results,
so remove embedded font tag to prevent the tag characters from being displayed.


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

Branch: refs/heads/4.2
Commit: be99da8d6405a352c052aaa13082404c9ac07ebe
Parents: 7c3a7fe
Author: Brian Federle <br...@citrix.com>
Authored: Thu Oct 24 10:52:49 2013 -0700
Committer: Brian Federle <br...@citrix.com>
Committed: Thu Oct 24 11:46:05 2013 -0700

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


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/be99da8d/ui/scripts/network.js
----------------------------------------------------------------------
diff --git a/ui/scripts/network.js b/ui/scripts/network.js
index 35b4507..53b78a6 100755
--- a/ui/scripts/network.js
+++ b/ui/scripts/network.js
@@ -1098,7 +1098,7 @@
                                         label: 'label.restart.required',
                                         converter: function(booleanValue) {
                                             if (booleanValue == true)
-                                                return "<font color='red'>Yes</font>";
+                                                return "Yes";
                                             else if (booleanValue == false)
                                                 return "No";
                                         }