-
-
- Environment |
- Route Rule |
-
-
- @for(environmentRoute <- serviceRoutes.inconsistentRoutes) {
- @for(route <- environmentRoute.routes) {
-
-
- @environmentRoute.environment
- |
-
- @route.frontendPath
- |
-
- }
- }
-
-
-
+ @defining(if (serviceRoutes.inconsistentRoutes.size > 3) "collapse" else "") { collapse =>
+
+
+
+
+ Inconsistent Route Rules
+
+
+
+
+
+
+ Environment |
+ Route Rule |
+
+
+ @for(environmentRoute <- serviceRoutes.inconsistentRoutes) {
+ @for(route <- environmentRoute.routes) {
+
+
+ @environmentRoute.environment
+ |
+
+ @route.frontendPath
+ |
+
+ }
+ }
+
+
+
+
-
+ }
}
\ No newline at end of file
From 0693faf34c9d218d3609973f9d24f03a21fdcb5b Mon Sep 17 00:00:00 2001
From: colin-lamed <9568290+colin-lamed@users.noreply.github.com>
Date: Fri, 11 Jan 2019 14:05:07 +0000
Subject: [PATCH 2/7] BDOG-53 apply css updates manually to css file since scss
no longer used
---
public/catalogue-frontend.css | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/public/catalogue-frontend.css b/public/catalogue-frontend.css
index ee069a789..b24445f5e 100644
--- a/public/catalogue-frontend.css
+++ b/public/catalogue-frontend.css
@@ -12028,4 +12028,17 @@ section span.other-teams-message {
position:relative;
z-index:0;
width: 100%;
+}
+
+.board__heading .accordion-toggle:after {
+ /* symbol for "opening" panels */
+ font-family: 'Glyphicons Halflings';
+ content: "\e114";
+ float: right;
+ color: grey;
+}
+
+.board__heading .accordion-toggle.collapsed:after {
+ /* symbol for "collapsed" panels */
+ content: "\e080";
}
\ No newline at end of file
From 86d984036dfb37cbd7dbcd9ecab6f3f9d27c83b2 Mon Sep 17 00:00:00 2001
From: colin-lamed <9568290+colin-lamed@users.noreply.github.com>
Date: Fri, 11 Jan 2019 14:27:03 +0000
Subject: [PATCH 3/7] BDOG-53 improve service route violations collapse
---
app/views/partials/serviceRouteRuleViolations.scala.html | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/app/views/partials/serviceRouteRuleViolations.scala.html b/app/views/partials/serviceRouteRuleViolations.scala.html
index c11571103..71821878b 100644
--- a/app/views/partials/serviceRouteRuleViolations.scala.html
+++ b/app/views/partials/serviceRouteRuleViolations.scala.html
@@ -19,15 +19,15 @@
@(serviceRoutes: ServiceRoutes)
@if(CatalogueFrontendSwitches.routingRules.isEnabled && serviceRoutes.hasInconsistentRoutes) {
- @defining(if (serviceRoutes.inconsistentRoutes.size > 3) "collapse" else "") { collapse =>
+ @defining(serviceRoutes.inconsistentRoutes.size > 3) { collapsable =>