Fix SSR title

This commit is contained in:
Jonathan Cremin 2016-10-24 00:21:58 +01:00
parent 122060e9a5
commit 562fd0d8a2

View file

@ -76,7 +76,7 @@ export default {
clearInterval(this.interval);
}
this.item = res.body;
document.title = `Match Audio • ${this.item.artist.name} - ${this.item.name}`;
document.title = `Match Audio • ${this.item.name} by ${this.item.artist.name}`;
});
}
}