Fix title handling
This commit is contained in:
parent
6a625ba9e6
commit
d963bf7159
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ angular.module('quay').factory('MetaService', ['$interpolate', 'Config', '$rootS
|
|||
var inter = $interpolate(expr, true, null, true);
|
||||
var result = inter(page.scope)
|
||||
|
||||
if (result != previous) {
|
||||
if (previous && result != previous) {
|
||||
$interval.cancel(currentInterval);
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue