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 19:53:08 UTC

git commit: updated refs/heads/master to c5fdf29

Updated Branches:
  refs/heads/master 765832a5c -> c5fdf2935


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/c5fdf293
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/c5fdf293
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/c5fdf293

Branch: refs/heads/master
Commit: c5fdf2935cfb9dc4e0eb2500191062c4afbfac91
Parents: 765832a
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 10:53: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/c5fdf293/ui/scripts/network.js
----------------------------------------------------------------------
diff --git a/ui/scripts/network.js b/ui/scripts/network.js
index 78f788b..12e5389 100755
--- a/ui/scripts/network.js
+++ b/ui/scripts/network.js
@@ -1092,7 +1092,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";
                                         }