Skip to content

Commit

Permalink
Fix failed to rename tag in web interface
Browse files Browse the repository at this point in the history
  • Loading branch information
RadhiFadlillah committed Aug 27, 2019
1 parent 63070d1 commit abcdfc9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion internal/view/js/page/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Loading

0 comments on commit abcdfc9

Please sign in to comment.