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 @@ -15817,7 +15817,7 @@ return a.projectOverviewURL(b);
15817
15817
};
15818
15818
} ]).filter("createFromSourceURL", function() {
15819
15819
return function(a, b) {
15820
- var c = URI.expand("/ project/{project}/catalog/images{?q*}", {
15820
+ var c = URI.expand("project/{project}/catalog/images{?q*}", {
15821
15821
project:a,
15822
15822
q:{
15823
15823
builderfor:b
@@ -15827,7 +15827,7 @@ return c.toString();
15827
15827
};
15828
15828
}).filter("createFromImageURL", function() {
15829
15829
return function(a, b, c, d) {
15830
- var e = URI.expand("/ project/{project}/create/fromimage{?q*}", {
15830
+ var e = URI.expand("project/{project}/create/fromimage{?q*}", {
15831
15831
project:c,
15832
15832
q:{
15833
15833
imageName:a.metadata.name,
You can’t perform that action at this time.
0 commit comments