diff --git a/frontend/src/app/scripts/_components/ScriptItems/Tooltips.tsx b/frontend/src/app/scripts/_components/ScriptItems/Tooltips.tsx index 79561ddac..2b44215cf 100644 --- a/frontend/src/app/scripts/_components/ScriptItems/Tooltips.tsx +++ b/frontend/src/app/scripts/_components/ScriptItems/Tooltips.tsx @@ -34,14 +34,14 @@ export default function Tooltips({ item }: { item: Script }) { {item.privileged && ( )} - {item.updateable && ( + {(item.updateable || item.type !== "pve") && ( )} - {!item.updateable && } + {!item.updateable && item.type !== "pve" && } ); }