IO-3281 Adjust zip to stream.

This commit is contained in:
Patrick Fic
2025-06-25 09:42:45 -07:00
parent c1e1dff7d2
commit 27d28e7ffc
3 changed files with 26 additions and 38 deletions

View File

@@ -383,7 +383,7 @@ export function ShopEmployeesFormComponent({ bodyshop }) {
title={() => <ShopEmployeeAddVacation employee={data && data.employees_by_pk} />}
columns={columns}
rowKey={"id"}
dataSource={data ? data.employees_by_pk.employee_vacations : []}
dataSource={data?.employees_by_pk?.employee_vacations ?? []}
/>
</Card>
);