-
- Dockerfile:
- {{ TriggerService.getDockerfileLocation(trigger) }}
-
\ No newline at end of file
diff --git a/static/directives/trigger/github/trigger-description.html b/static/directives/trigger/github/trigger-description.html
index 668a03785..5a01c4aed 100644
--- a/static/directives/trigger/github/trigger-description.html
+++ b/static/directives/trigger/github/trigger-description.html
@@ -4,16 +4,4 @@
{{ trigger.config.build_source }}
-
-
- Branches/Tags:
- Matching Regular Expression {{ trigger.config.branchtag_regex }}
- (All Branches and Tags)
-
-
-
- Dockerfile:
- {{ TriggerService.getDockerfileLocation(trigger) }}
-
-
\ No newline at end of file
diff --git a/static/directives/trigger/gitlab/trigger-description.html b/static/directives/trigger/gitlab/trigger-description.html
index 232b110ab..737bed214 100644
--- a/static/directives/trigger/gitlab/trigger-description.html
+++ b/static/directives/trigger/gitlab/trigger-description.html
@@ -4,16 +4,4 @@
{{ trigger.config.build_source }}
-
-
- Branches/Tags:
- Matching Regular Expression {{ trigger.config.branchtag_regex }}
- (All Branches and Tags)
-
-
-
- Dockerfile:
- {{ TriggerService.getDockerfileLocation(trigger) }}
-
-
diff --git a/static/directives/triggered-build-description.html b/static/directives/triggered-build-description.html
index 91fb6a23f..990413b69 100644
--- a/static/directives/triggered-build-description.html
+++ b/static/directives/triggered-build-description.html
@@ -13,7 +13,7 @@
diff --git a/static/js/directives/ui/trigger-description.js b/static/js/directives/ui/trigger-description.js
index f8ad3f630..df7135f16 100644
--- a/static/js/directives/ui/trigger-description.js
+++ b/static/js/directives/ui/trigger-description.js
@@ -10,10 +10,8 @@ angular.module('quay').directive('triggerDescription', function () {
restrict: 'C',
scope: {
'trigger': '=trigger',
- 'short': '=short'
},
controller: function($scope, $element, KeyService, TriggerService) {
- // TODO(jschorr): Clean up and remove the 'short' once we're on new layout.
$scope.KeyService = KeyService;
$scope.TriggerService = TriggerService;
TriggerService.populateTemplate($scope, 'trigger-description');