summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--web_src/js/index.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/web_src/js/index.js b/web_src/js/index.js
index 12539c4ec9..4fda303a3c 100644
--- a/web_src/js/index.js
+++ b/web_src/js/index.js
@@ -1000,13 +1000,11 @@ async function initRepository() {
$this.closest('.dropdown').find('.menu').toggle('visible');
const content = $(`#comment-${$this.data('target')}`).text();
- const subject = content.split('\n', 1)[0].slice(0, 255);
const poster = $this.data('poster-username');
const reference = $this.data('reference');
const $modal = $($this.data('modal'));
- $modal.find('input[name="title"').val(subject);
$modal.find('textarea[name="content"]').val(`${content}\n\n_Originally posted by @${poster} in ${reference}_`);
$modal.modal('show');