почистил юзер лист

This commit is contained in:
2026-02-08 11:25:10 +05:00
parent 653abe8c85
commit e65a2b65cb
2 changed files with 3 additions and 4 deletions

View File

@@ -862,7 +862,7 @@ async function openManageAssigneesModal(taskId) {
<div class="checkbox-item">
<label>
<input type="checkbox" class="available-user-checkbox" value="${user.id}">
${user.name} (${user.email})
${user.name}
</label>
</div>
`).join('')}
@@ -940,7 +940,7 @@ async function openManageAssigneesModal(taskId) {
<div class="checkbox-item">
<label>
<input type="checkbox" class="replace-all-user-checkbox" value="${user.id}">
${user.name} (${user.email})
${user.name}
</label>
</div>
`).join('')}

View File

@@ -196,8 +196,7 @@ function renderUsersChecklist() {
<label>
<input type="checkbox" name="assignedUsers" value="${user.id}"
onchange="toggleUserSelection(this, ${user.id})">
${user.name} (${user.email})
${user.auth_type === 'ldap' ? '<small style="color: #666;"> - LDAP</small>' : ''}
${user.name}
</label>
</div>
`).join('');