Changes in Rights and Roles

This commit is contained in:
2024-12-21 18:53:53 +01:00
parent c8521ad1f6
commit 813944fc23
10 changed files with 447 additions and 324 deletions

View File

@@ -19,7 +19,7 @@ const setupPage = async () => {
items.value = (await useSupabaseSelect("projects","*, customer (name), plant(name), projecttype(name, id)","projectNumber")).map(project => {
return {
...project,
profiles: project.profiles.map(x => profiles.find(z => z.id === x).fullName).join(", "),
//profiles: project.profiles.map(x => profiles.find(z => z.id === x).fullName).join(", "),
phase: getActivePhaseLabel(project)
}
})