From 463257dcec471cf8e2100d06432a63571b047586 Mon Sep 17 00:00:00 2001 From: Brian Federle Date: Tue, 21 Aug 2012 13:12:06 -0700 Subject: [PATCH] VPC UI: Network ACL: Only show 'acl' tab on detail view reviewed-by: jessica --- ui/scripts/ui-custom/vpc.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/ui/scripts/ui-custom/vpc.js b/ui/scripts/ui-custom/vpc.js index dbbe04f455a..7e7d44a9196 100644 --- a/ui/scripts/ui-custom/vpc.js +++ b/ui/scripts/ui-custom/vpc.js @@ -91,7 +91,15 @@ } } }, - detailView: tierDetailView + detailView: function() { + var detailView = $.extend(true, {}, tierDetailView); + + detailView.tabs = { + acl: tierDetailView.tabs.acl + }; + + return detailView; + } } }), { context: acl.context }