diff options
author | cel <cel@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519> | 2020-03-29 21:12:21 -0400 |
---|---|---|
committer | cel <cel@lOUVT+Phkvai9a/cCS/RKo+S9hnPAQdVixms/7ldpPA=.ed25519> | 2020-04-01 21:23:54 -0400 |
commit | c7f66679227bac85868e13b38defa836e96b725f (patch) | |
tree | 0255491c78b9d00a39dc22d8dd631646ea069d32 /lib/serve.js | |
parent | 06b31831c1f92318394eff0265606d8ef86ca75d (diff) | |
download | patchfoo-c7f66679227bac85868e13b38defa836e96b725f.tar.gz patchfoo-c7f66679227bac85868e13b38defa836e96b725f.zip |
minor style changes
Diffstat (limited to 'lib/serve.js')
-rw-r--r-- | lib/serve.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/serve.js b/lib/serve.js index 023fcc5..b80bd71 100644 --- a/lib/serve.js +++ b/lib/serve.js @@ -1715,9 +1715,9 @@ Serve.prototype.newGathering = function () { ph('div', ph('textarea', { name: 'mentions', placeholder: 'Initial mentions', title: 'SSB feed/blob/message IDs to mention in the gathering root message', - cols: 70, style: 'font: monospace', - rows: Math.max(3, initialMentions.length + 2), - }, u.escapeHTML(initialMentions.join('\n')))), + cols: 53, style: 'font: monospace', + rows: Math.max(3, initialMentions.length + 1), + }, u.escapeHTML(initialMentions.join('\n')+'\n'))), self.phMsgActions(content) ]), content ? self.phPreview(content, { |