fix(manual print): missing role added

This commit is contained in:
2025-05-02 19:12:49 -05:00
parent 3a78f77475
commit 9f68cd2146

View File

@@ -70,7 +70,7 @@ export default function Lots() {
const { settings } = useSettingStore();
const server = settings.filter((n) => n.name === "server")[0]?.value || "";
const roles = ["admin", "manager", "operator"];
const roles = ["technician", "admin", "manager", "operator"];
const lotdata = data ? data : [];
if (user && roles.includes(user.role)) {