git ssb

16+

Dominic / patchbay



Commit 13a24855e9dbf2ac1ca5713ab8be039818662114

fix the one dig error

Ev Bogue committed on 7/20/2016, 12:55:12 AM
Parent: 7431b007b6a11f9d691bc7a8ad715b4ac87e16c8

Files changed

modules/like.jschanged
modules/like.jsView
@@ -26,9 +26,9 @@
2626 sbot_links({dest: msg.key, rel: 'vote'}),
2727 pull.collect(function (err, votes) {
2828 if(votes.length === 1)
2929 digs.textContent = ' 1 Dig'
30- if(votes.length)
30+ if(votes.length > 1)
3131 digs.textContent = ' ' + votes.length + ' Digs'
3232 })
3333 )
3434

Built with git-ssb-web