Merge pull request #952 from coreos-inc/fixpagetitle

Fix page titles
This commit is contained in:
josephschorr 2015-11-20 18:38:03 -05:00
commit 859537c4a1
2 changed files with 1 additions and 3 deletions

View file

@ -12,7 +12,7 @@ angular.module('quay').factory('MetaService', ['$interpolate', 'Config', '$rootS
var inter = $interpolate(expr, true, null, true);
if (!inter) {
return null;
return expr.toString();
}
return inter(page.scope);