diff --git a/static/directives/repo-view/repo-panel-builds.html b/static/directives/repo-view/repo-panel-builds.html index 435da1b85..33c704503 100644 --- a/static/directives/repo-view/repo-panel-builds.html +++ b/static/directives/repo-view/repo-panel-builds.html @@ -133,7 +133,7 @@ -
+
{{ trigger.config.subdir || '/' }} {{ trigger.config.branchtag_regex || 'All' }} diff --git a/static/directives/trigger/bitbucket/trigger-description.html b/static/directives/trigger/bitbucket/trigger-description.html index 997ae746b..5cfa4ecb1 100644 --- a/static/directives/trigger/bitbucket/trigger-description.html +++ b/static/directives/trigger/bitbucket/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/custom-git/trigger-description.html b/static/directives/trigger/custom-git/trigger-description.html index abd3ecd7d..eb8c53c40 100644 --- a/static/directives/trigger/custom-git/trigger-description.html +++ b/static/directives/trigger/custom-git/trigger-description.html @@ -1,10 +1,4 @@ Push to {{ trigger.config.build_source }} -
-
- 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 @@
Triggered by -
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');