mirror of https://github.com/go-gitea/gitea.git
Reference in new issue modal: dont pre-populate issue title (#17208)
* dont prepopulate issue title * cleanup
This commit is contained in:
parent
47193dbcd9
commit
8f75a559ee
|
@ -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');
|
||||
|
|
Loading…
Reference in New Issue