Small fixes and rename for #5482
- New Issue Fixed assign me being hidden after assignees were cleared https://codeberg.org/forgejo/forgejo/pulls/5482/files#issuecomment-2365431 - Test for verifying the above - Removed wait for network idle from e2e test - Renamed templ key assigneeId to assigneeIds
This commit is contained in:
parent
82b1ab56de
commit
e988a25237
4 changed files with 8 additions and 10 deletions
|
@ -256,7 +256,7 @@ export function initRepoCommentForm() {
|
|||
icon = svg('octicon-milestone', 18, 'tw-mr-2');
|
||||
} else if (input_id === '#project_id') {
|
||||
icon = svg('octicon-project', 18, 'tw-mr-2');
|
||||
} else if (input_id === '#assignee_id') {
|
||||
} else if (input_id === '#assignee_ids') {
|
||||
icon = `<img class="ui avatar image tw-mr-2" alt="avatar" src=${$(this).data('avatar')}>`;
|
||||
}
|
||||
|
||||
|
@ -296,7 +296,7 @@ export function initRepoCommentForm() {
|
|||
// Milestone, Assignee, Project
|
||||
selectItem('.select-project', '#project_id');
|
||||
selectItem('.select-milestone', '#milestone_id');
|
||||
selectItem('.select-assignee', '#assignee_id');
|
||||
selectItem('.select-assignee', '#assignee_ids');
|
||||
}
|
||||
|
||||
async function onEditContent(event) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue