|
@@ -3008,7 +3008,7 @@ $(document).ready(function() {
|
|
|
html.push(data.role);
|
|
|
html.push('</small></li>');
|
|
|
}
|
|
|
- auditorshtml.push('<li class="list-group-item" data-auditorid="' + data.audit_id + '">');
|
|
|
+ auditorshtml.push('<li class="list-group-item" ' + (index !== 0 ? 'data-auditorid="' + data.audit_id + '"' : '') + '>');
|
|
|
auditorshtml.push('<i class="fa ' + (index+1 === datas.length ? 'fa-stop-circle' : 'fa-chevron-circle-down') + '"></i> ');
|
|
|
auditorshtml.push(data.name + ' <small class="text-muted">' + data.role + '</small>');
|
|
|
if (index === 0) {
|