Repository: cloudstack Updated Branches: refs/heads/4.4 31d22c1b1 -> 6e1a43ad4
Instances UI: Truncate name, displayname fields to prevent overflow Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/6e1a43ad Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/6e1a43ad Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/6e1a43ad Branch: refs/heads/4.4 Commit: 6e1a43ad492d7626bf592d7e269cc1e426c756b8 Parents: 31d22c1 Author: Brian Federle <[email protected]> Authored: Tue Mar 25 15:49:07 2014 -0700 Committer: Brian Federle <[email protected]> Committed: Tue Mar 25 15:50:51 2014 -0700 ---------------------------------------------------------------------- ui/scripts/instances.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/6e1a43ad/ui/scripts/instances.js ---------------------------------------------------------------------- diff --git a/ui/scripts/instances.js b/ui/scripts/instances.js index cc69b00..d219e6d 100644 --- a/ui/scripts/instances.js +++ b/ui/scripts/instances.js @@ -148,13 +148,15 @@ }, fields: { name: { - label: 'label.name' + label: 'label.name', + truncate: true }, instancename: { label: 'label.internal.name' }, displayname: { - label: 'label.display.name' + label: 'label.display.name', + truncate: true }, zonename: { label: 'label.zone.name'
