Fix sticky discussion excerpt (#20)

This commit is contained in:
Sami Mazouz
2020-09-29 15:40:19 +01:00
committed by GitHub
parent fe02967de0
commit a2aedaa2e1

View File

@ -17,7 +17,7 @@ export default function addStickyControl() {
if (firstPost) { if (firstPost) {
const excerpt = truncate(firstPost.contentPlain(), 175); const excerpt = truncate(firstPost.contentPlain(), 175);
items.add('excerpt', excerpt, -100); items.add('excerpt', m.trust(excerpt), -100);
} }
} }
}); });