From 8627385132e113f3eb4bfc93ecc32f6e01cbaae7 Mon Sep 17 00:00:00 2001 From: Michael Mandrus <41969079+mmandrus@users.noreply.github.com> Date: Fri, 26 Jul 2024 06:26:07 -0400 Subject: [PATCH] CloudMigrations: Open feedback link in a few tab (#91014) open feedback link in a new tab --- public/app/features/migrate-to-cloud/MigrateToCloud.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/migrate-to-cloud/MigrateToCloud.tsx b/public/app/features/migrate-to-cloud/MigrateToCloud.tsx index ffd80d48f2f..24da6cc33d9 100644 --- a/public/app/features/migrate-to-cloud/MigrateToCloud.tsx +++ b/public/app/features/migrate-to-cloud/MigrateToCloud.tsx @@ -18,7 +18,7 @@ export default function MigrateToCloud() { onRemove={ feedbackURL ? () => { - window.location.href = feedbackURL; + window.open(feedbackURL, '_blank'); } : undefined }