Adjust employee name column parsing
This commit is contained in:
Vendored
+2
-2
@@ -387,8 +387,8 @@ class AgrarmonitorConnector {
|
||||
return {
|
||||
id: this.parseNumber(row.getAttribute('data-id') ?? row.id),
|
||||
nummer: cells[0]?.textContent?.trim() ?? '',
|
||||
nachname: cells[1]?.textContent?.trim() ?? '',
|
||||
vorname: cells[2]?.textContent?.trim() ?? '',
|
||||
nachname: cells[2]?.textContent?.trim() ?? '',
|
||||
vorname: cells[3]?.textContent?.trim() ?? '',
|
||||
aktiv: Boolean(row.querySelector('td.toggle .fa-check, td.toggle .text-green')),
|
||||
};
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user