冗長なハッシュタグの表示を無くした

This commit is contained in:
syuilo 2018-06-12 08:43:48 +09:00
parent b18013025f
commit 1af50fd7b8

View file

@ -40,6 +40,14 @@ export default Vue.component('mk-note-html', {
ast = this.ast;
}
if (ast.filter(x => x.type != 'hashtag').length == 0) {
return;
}
while (ast[ast.length - 1].type == 'hashtag') {
ast.pop();
}
// Parse ast to DOM
const els = flatten(ast.map(token => {
switch (token.type) {