Add employee active flag

This commit is contained in:
2026-06-09 11:40:09 +02:00
parent b8da2a821f
commit f7401ccf18
8 changed files with 8 additions and 4 deletions
+1
View File
@@ -389,6 +389,7 @@ class AgrarmonitorConnector {
nummer: cells[0]?.textContent?.trim() ?? '',
nachname: cells[1]?.textContent?.trim() ?? '',
vorname: cells[2]?.textContent?.trim() ?? '',
aktiv: Boolean(row.querySelector('td.toggle .fa-check, td.toggle .text-green')),
};
});
}