Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #3161 from jhadvig/bz1782695
Bug 1782695: Supply the navigateResourceURL filter with kind and name space in the ConfigMap list page [enterprise-3.11]
  • Loading branch information
openshift-merge-robot committed Jan 7, 2020
2 parents 9873b7b + c28b2bd commit 1d044e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/views/browse/config-maps.html
Expand Up @@ -56,7 +56,7 @@ <h2>The filter is hiding all config maps. <button type="button" class="btn btn-l
<tbody>
<tr ng-repeat="configMap in configMaps">
<td data-title="Name">
<a href="{{configMap | navigateResourceURL}}">{{configMap.metadata.name}}</a>
<a href="{{configMap.metadata.name | navigateResourceURL : 'ConfigMap' : configMap.metadata.namespace}}">{{configMap.metadata.name}}</a>
</td>
<td data-title="Created">
<span am-time-ago="configMap.metadata.creationTimestamp"></span>
Expand Down
2 changes: 1 addition & 1 deletion dist/scripts/templates.js
Expand Up @@ -2230,7 +2230,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
"<tbody>\n" +
"<tr ng-repeat=\"configMap in configMaps\">\n" +
"<td data-title=\"Name\">\n" +
"<a href=\"{{configMap | navigateResourceURL}}\">{{configMap.metadata.name}}</a>\n" +
"<a href=\"{{configMap.metadata.name | navigateResourceURL : 'ConfigMap' : configMap.metadata.namespace}}\">{{configMap.metadata.name}}</a>\n" +
"</td>\n" +
"<td data-title=\"Created\">\n" +
"<span am-time-ago=\"configMap.metadata.creationTimestamp\"></span>\n" +
Expand Down

0 comments on commit 1d044e2

Please sign in to comment.