File tree 2 files changed +4
-4
lines changed
assets/app/scripts/filters
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -386,7 +386,7 @@ angular.module('openshiftConsole')
386
386
} )
387
387
. filter ( 'createFromSourceURL' , function ( ) {
388
388
return function ( projectName , sourceURL ) {
389
- var createURI = URI . expand ( "/ project/{project}/catalog/images{?q*}" , {
389
+ var createURI = URI . expand ( "project/{project}/catalog/images{?q*}" , {
390
390
project : projectName ,
391
391
q : {
392
392
builderfor : sourceURL
@@ -397,7 +397,7 @@ angular.module('openshiftConsole')
397
397
} )
398
398
. filter ( 'createFromImageURL' , function ( ) {
399
399
return function ( imageStream , imageTag , projectName , sourceURL ) {
400
- var createURI = URI . expand ( "/ project/{project}/create/fromimage{?q*}" , {
400
+ var createURI = URI . expand ( "project/{project}/create/fromimage{?q*}" , {
401
401
project : projectName ,
402
402
q : {
403
403
imageName : imageStream . metadata . name ,
Original file line number Diff line number Diff line change @@ -15820,7 +15820,7 @@ return a.projectOverviewURL(b);
15820
15820
};
15821
15821
} ]).filter("createFromSourceURL", function() {
15822
15822
return function(a, b) {
15823
- var c = URI.expand("/ project/{project}/catalog/images{?q*}", {
15823
+ var c = URI.expand("project/{project}/catalog/images{?q*}", {
15824
15824
project:a,
15825
15825
q:{
15826
15826
builderfor:b
@@ -15830,7 +15830,7 @@ return c.toString();
15830
15830
};
15831
15831
}).filter("createFromImageURL", function() {
15832
15832
return function(a, b, c, d) {
15833
- var e = URI.expand("/ project/{project}/create/fromimage{?q*}", {
15833
+ var e = URI.expand("project/{project}/create/fromimage{?q*}", {
15834
15834
project:c,
15835
15835
q:{
15836
15836
imageName:a.metadata.name,
You can’t perform that action at this time.
0 commit comments