Update filters.js
fixed issue w/ github enterprise and not display correct URL path
This commit is contained in:
parent
95c375dceb
commit
10e493ba1e
1 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ angular.module('app').filter('fullName', function() {
|
||||||
angular.module('app').filter('fullPath', function() {
|
angular.module('app').filter('fullPath', function() {
|
||||||
return function(repo) {
|
return function(repo) {
|
||||||
if (repo == undefined) { return ""; }
|
if (repo == undefined) { return ""; }
|
||||||
return repo.remote+"/"+repo.owner+"/"+repo.name;
|
return repo.host+"/"+repo.owner+"/"+repo.name;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue