FIX: Tab was broken with keyboard shortcuts

This commit is contained in:
Robin Ward 2016-02-10 15:28:00 -05:00
parent b5b1178f3a
commit bc1927dc1e
1 changed files with 1 additions and 1 deletions

View File

@ -315,7 +315,7 @@ createWidget('post-article', {
},
html(attrs, state) {
const rows = [h('a.tabLoc')];
const rows = [h('a.tabLoc', { attributes: { href: ''} })];
if (state.repliesAbove.length) {
const replies = state.repliesAbove.map(p => this.attach('embedded-post', p, { state: { above: true } }));
rows.push(h('div.row', h('section.embedded-posts.top.topic-body.offset2', replies)));