Reference in new issue modal: dont pre-populate issue title (#17208)

* dont prepopulate issue title

* cleanup
This commit is contained in:
Norwin 2021-10-02 18:05:55 +02:00 committed by GitHub
parent 47193dbcd9
commit 8f75a559ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -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');