@@ -4123,8 +4123,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
4123
4123
"</div>\n" +
4124
4124
"<p class=\"card-pf-badge\">Builds source code</p>\n" +
4125
4125
"<p>\n" +
4126
- "<truncate-long-text ng-if=\"!keywords.length\" class=\"project-description\" content=\"imageStream | imageStreamTagAnnotation : 'description' : is.tag.tag\" limit=\"200\" use-word-boundary=\"true\"></truncate-long-text>\n" +
4127
- "<span ng-if=\"keywords.length\" ng-bind-html=\"imageStream | imageStreamTagAnnotation : 'description' : is.tag.tag | truncate : 200 | highlightKeywords : keywords\"></span>\n" +
4126
+ "<truncate-long-text class=\"project-description\" content=\"imageStream | imageStreamTagAnnotation : 'description' : is.tag.tag\" limit=\"200\" highlight-keywords=\"keywords\" use-word-boundary=\"true\"></truncate-long-text>\n" +
4128
4127
"</p>\n" +
4129
4128
"<p ng-if=\"imageStream | imageStreamTagAnnotation : 'provider' : is.tag.tag\">\n" +
4130
4129
"Provider: {{imageStream | imageStreamTagAnnotation : 'provider' : is.tag.tag}}\n" +
@@ -4175,8 +4174,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
4175
4174
"</h2>\n" +
4176
4175
"</div>\n" +
4177
4176
"<p>\n" +
4178
- "<truncate-long-text ng-if=\"!keywords.length\" class=\"project-description\" content=\"(template | description) || template.metadata.name\" limit=\"200\" use-word-boundary=\"true\"></truncate-long-text>\n" +
4179
- "<span ng-if=\"keywords.length\" ng-bind-html=\"template | description | truncate : 200 | highlightKeywords : keywords\"></span>\n" +
4177
+ "<truncate-long-text class=\"project-description\" content=\"(template | description) || template.metadata.name\" limit=\"200\" use-word-boundary=\"true\" highlight-keywords=\"keywords\"></truncate-long-text>\n" +
4180
4178
"</p>\n" +
4181
4179
"<p ng-if=\"template | annotation : 'provider'\">\n" +
4182
4180
"Provider: {{template | annotation : 'provider'}}\n" +
@@ -6768,7 +6766,9 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
6768
6766
"<span ng-bind-html=\"event.reason | sentenceCase | highlightKeywords : filterExpressions\"></span> \n" +
6769
6767
"<span class=\"pficon pficon-warning-triangle-o\" ng-show=\"event.type === 'Warning'\" aria-hidden=\"true\" data-toggle=\"tooltip\" data-original-title=\"Warning\"></span>\n" +
6770
6768
"</div>\n" +
6771
- "<span ng-bind-html=\"event.message | highlightKeywords : filterExpressions\"></span>\n" +
6769
+ "\n" +
6770
+ "<truncate-long-text content=\"event.message\" limit=\"1000\" newline-limit=\"4\" use-word-boundary=\"true\" highlight-keywords=\"filterExpressions\" expandable=\"true\">\n" +
6771
+ "</truncate-long-text>\n" +
6772
6772
"<div ng-if=\"event.count > 1\" class=\"text-muted small\">\n" +
6773
6773
"{{event.count}} times in the last\n" +
6774
6774
"<duration-until-now timestamp=\"event.firstTimestamp\" omit-single=\"true\" precision=\"1\"></duration-until-now>\n" +
@@ -8384,20 +8384,22 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
8384
8384
8385
8385
8386
8386
$templateCache.put('views/directives/truncate-long-text.html',
8387
- "<span ng-if=\"!truncated\" class=\"truncated-content\">{{content}} </span>\n" +
8387
+ "<span ng-if=\"!truncated\" ng-bind-html=\"content | highlightKeywords : keywords\" class=\"truncated-content\"></span>\n" +
8388
8388
"<span ng-if=\"truncated\">\n" +
8389
8389
"<span ng-if=\"!toggles.expanded\">\n" +
8390
- "<span class=\"truncated-content\" ng-attr-title=\"{{content}}\">{{truncatedContent}}…</span>\n" +
8390
+ "<span ng-attr-title=\"{{content}}\">\n" +
8391
+ "<span ng-bind-html=\"truncatedContent | highlightKeywords : keywords\" class=\"truncated-content\"></span>…\n" +
8392
+ "</span>\n" +
8391
8393
"<a ng-if=\"expandable\" href=\"\" ng-click=\"toggles.expanded = true\" style=\"margin-left: 5px; white-space: nowrap\">See all</a>\n" +
8392
8394
"</span>\n" +
8393
8395
"<span ng-if=\"toggles.expanded\">\n" +
8394
8396
"<div ng-if=\"prettifyJson\" class=\"well\">\n" +
8395
8397
"<span class=\"pull-right\" style=\"margin-top: -10px\"><a href=\"\" ng-click=\"toggles.expanded = false\">Collapse</a></span>\n" +
8396
- "<span class=\"pretty-json truncated-content\">{{content | prettifyJSON}} </span>\n" +
8398
+ "<span ng-bind-html=\"content | prettifyJSON | highlightKeywords : keywords\" class=\"pretty-json truncated-content\"></span>\n" +
8397
8399
"</div>\n" +
8398
8400
"<span ng-if=\"!prettifyJson\">\n" +
8399
8401
"<span class=\"pull-right\"><a href=\"\" ng-click=\"toggles.expanded = false\">Collapse</a></span>\n" +
8400
- "<span class=\"truncated-content\">{{content}} </span>\n" +
8402
+ "<span ng-bind-html=\"content | highlightKeywords : keywords\" class=\"truncated-content\"></span>\n" +
8401
8403
"</span>\n" +
8402
8404
"</span>\n" +
8403
8405
"</span>"
0 commit comments