aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/render-msg.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/render-msg.js b/lib/render-msg.js
index a968702..15e278c 100644
--- a/lib/render-msg.js
+++ b/lib/render-msg.js
@@ -277,9 +277,9 @@ RenderMsg.prototype.post = function (cb) {
done(function (err, rootLink, branchLinks) {
if (err) return self.wrap(u.renderError(err), cb)
self.wrap(h('div.ssb-post',
- rootLink ? h('div', h('small', '>> ', rootLink)) : '',
+ rootLink ? h('div', h('small', '→ ', rootLink)) : '',
branchLinks.map(function (a, i) {
- return h('div', h('small', '> ', a))
+ return h('div', h('small', '  ↳ ', a))
}),
h('div.ssb-post-text', {innerHTML: self.markdown()})
), cb)