client/tags: fix window title

This commit is contained in:
rr- 2016-07-29 11:00:26 +02:00
parent ef4806e142
commit 76e9307449
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ class TagController {
constructor(ctx, section) {
Tag.get(ctx.parameters.name).then(tag => {
topNavigation.activate('tags');
topNavigation.setTitle('Tag #' + tag);
topNavigation.setTitle('Tag #' + tag.names[0]);
this._name = ctx.parameters.name;
tag.addEventListener('change', e => this._evtSaved(e));