Hide Delete button on script detail page for non-workspace-admins

This commit is contained in:
windmill-internal-app[bot]
2026-05-13 14:12:57 +00:00
parent 4d0f2c26a1
commit dea9736896
@@ -565,14 +565,16 @@
})
}
menuItems.push({
label: 'Delete',
Icon: Trash,
onclick: async () => {
deleteScript(script.hash)
},
color: 'red'
})
if ($userStore?.is_admin || $userStore?.is_super_admin) {
menuItems.push({
label: 'Delete',
Icon: Trash,
onclick: async () => {
deleteScript(script.hash)
},
color: 'red'
})
}
}
return menuItems