diff options
-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, { |