From 412415ab3924145aa9b1c3ef471cd2a6a9e4e2ed Mon Sep 17 00:00:00 2001 From: Yunwen Zheng Date: Tue, 8 Jul 2025 14:00:51 -0400 Subject: [PATCH] NewProvisionedFolderForm: pass in empty title for new folder form (#107733) Co-authored-by: Clarity-89 --- .../browse-dashboards/components/NewProvisionedFolderForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/browse-dashboards/components/NewProvisionedFolderForm.tsx b/public/app/features/browse-dashboards/components/NewProvisionedFolderForm.tsx index 10a9e429099..291696baeeb 100644 --- a/public/app/features/browse-dashboards/components/NewProvisionedFolderForm.tsx +++ b/public/app/features/browse-dashboards/components/NewProvisionedFolderForm.tsx @@ -210,7 +210,7 @@ export function NewProvisionedFolderForm({ parentFolder, onDismiss }: Props) { const { workflowOptions, isGitHub, repository, folder, initialValues } = useProvisionedFolderFormData({ folderUid: parentFolder?.uid, action: 'create', - title: parentFolder?.title, + title: '', // Empty title for new folders }); if (!initialValues) {