From 2a1c290dffdaa213d37fd5a027658e3ad54202d1 Mon Sep 17 00:00:00 2001 From: miloschwartz Date: Tue, 31 Mar 2026 12:32:03 -0700 Subject: [PATCH] dont show identifier on create private resource --- src/components/InternalResourceForm.tsx | 28 +++++++++++++------------ 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/src/components/InternalResourceForm.tsx b/src/components/InternalResourceForm.tsx index 2de907079..50847a489 100644 --- a/src/components/InternalResourceForm.tsx +++ b/src/components/InternalResourceForm.tsx @@ -566,19 +566,21 @@ export function InternalResourceForm({ )} /> - ( - - {t("identifier")} - - - - - - )} - /> + {variant === "edit" && ( + ( + + {t("identifier")} + + + + + + )} + /> + )}