Fix failed to rename tag in web interface

This commit is contained in:
Radhi Fadlillah 2019-08-27 20:42:13 +07:00
parent 63070d1b15
commit abcdfc9d13
2 changed files with 4 additions and 4 deletions

View file

@ -72,7 +72,7 @@ var template = `
<custom-dialog id="dialog-tags" v-bind="dialogTags">
<a @click="filterTag('*')">(all tagged)</a>
<a @click="filterTag('*', true)">(all untagged)</a>
<a v-for="(tag, idx) in tags" @click="dialogTagClicked($event, idx, tag)">
<a v-for="tag in tags" @click="dialogTagClicked($event, tag)">
#{{tag.name}}<span>{{tag.nBookmarks}}</span>
</a>
</custom-dialog>

File diff suppressed because one or more lines are too long