aboutsummaryrefslogtreecommitdiff
path: root/lib/render-msg.js
diff options
context:
space:
mode:
authorcel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519>2017-12-25 12:42:41 -1000
committercel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519>2017-12-25 12:42:41 -1000
commit399d0a666d1f8d2956c81279a98bed3c483dea51 (patch)
treecbedd0297e34738c6f7243324712b655250a4758 /lib/render-msg.js
parentb48b730900193fd19ce40192f0252593efa12f95 (diff)
downloadpatchfoo-399d0a666d1f8d2956c81279a98bed3c483dea51.tar.gz
patchfoo-399d0a666d1f8d2956c81279a98bed3c483dea51.zip
Allow using ooo (out-of-order message replication)
Diffstat (limited to 'lib/render-msg.js')
-rw-r--r--lib/render-msg.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/render-msg.js b/lib/render-msg.js
index 92ad260..3b498e0 100644
--- a/lib/render-msg.js
+++ b/lib/render-msg.js
@@ -811,7 +811,10 @@ RenderMsg.prototype.valueTable = function (val, depth, cb) {
}
RenderMsg.prototype.missing = function (cb) {
- this.wrapMini(h('code', 'MISSING'), cb)
+ this.wrapMini([
+ h('code', 'MISSING'), ' ',
+ h('a', {href: '?ooo=1'}, 'fetch')
+ ], cb)
}
RenderMsg.prototype.issues = function (cb) {