From 1762f7a1925ee5e626f6cfcf3852d0f617365bd2 Mon Sep 17 00:00:00 2001 From: Robb Hamilton Date: Thu, 6 Feb 2020 14:38:10 -0500 Subject: [PATCH] Bug 1760767: fix bug where container image name does not display correctly Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1760767 --- app/views/_pod-template-container.html | 2 +- dist/scripts/templates.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/_pod-template-container.html b/app/views/_pod-template-container.html index d2f9379734..ebdb0c0389 100644 --- a/app/views/_pod-template-container.html +++ b/app/views/_pod-template-container.html @@ -14,7 +14,7 @@
Image: - {{container.image | imageStreamName}} + {{container.image}} {{container.image | imageStreamName}} {{imagesByDockerReference[container.image].metadata.name | stripSHAPrefix | limitTo: 7}} diff --git a/dist/scripts/templates.js b/dist/scripts/templates.js index cbc4c12310..85a2f2c992 100644 --- a/dist/scripts/templates.js +++ b/dist/scripts/templates.js @@ -245,7 +245,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function( "
\n" + "
\n" + "Image:\n" + - "{{container.image | imageStreamName}}\n" + + "{{container.image}}\n" + "\n" + "{{container.image | imageStreamName}}\n" + "{{imagesByDockerReference[container.image].metadata.name | stripSHAPrefix | limitTo: 7}}\n" +