From a68ebe25f25b0ea8c72f3437dac08d753d7beb22 Mon Sep 17 00:00:00 2001
From: Bram Suurd <78373894+BramSuurdje@users.noreply.github.com>
Date: Sun, 29 Jun 2025 13:26:54 +0200
Subject: [PATCH] fix bug in tooltip that would always render 'updateable'
---
frontend/src/app/scripts/_components/script-items/tool-tips.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/frontend/src/app/scripts/_components/script-items/tool-tips.tsx b/frontend/src/app/scripts/_components/script-items/tool-tips.tsx
index ad953397b..f4a6be853 100644
--- a/frontend/src/app/scripts/_components/script-items/tool-tips.tsx
+++ b/frontend/src/app/scripts/_components/script-items/tool-tips.tsx
@@ -39,7 +39,7 @@ export default function Tooltips({ item }: { item: Script }) {
{item.privileged && (
)}
- {(item.updateable || item.type !== "pve") && (
+ {item.updateable && item.type !== "pve" && (