From 86466aec61f92985faaddcb3d998c9c1c36033f9 Mon Sep 17 00:00:00 2001 From: Sonia Aguilar <33540275+soniaAguilarPeiron@users.noreply.github.com> Date: Mon, 1 Jul 2024 17:00:40 +0200 Subject: [PATCH] Gops: Update texts in main irm page (#89810) Update texts in main irm page --- public/app/features/gops/configuration-tracker/irmHooks.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/app/features/gops/configuration-tracker/irmHooks.ts b/public/app/features/gops/configuration-tracker/irmHooks.ts index f182633940f..14fe5246d52 100644 --- a/public/app/features/gops/configuration-tracker/irmHooks.ts +++ b/public/app/features/gops/configuration-tracker/irmHooks.ts @@ -340,7 +340,7 @@ export const useGetConfigurationForUI = ({ function getConnectDataSourceConfiguration() { const description = dataSourceCompatibleWithAlerting ? 'You have connected a datasource.' - : 'Connect at least one data source to start receiving data.'; + : 'Connect at least one data source to start receiving data'; const actionButtonTitle = dataSourceCompatibleWithAlerting ? 'View' : 'Connect'; return { id: ConfigurationStepsEnum.CONNECT_DATASOURCE, @@ -356,8 +356,8 @@ export const useGetConfigurationForUI = ({ id: ConfigurationStepsEnum.ESSENTIALS, title: 'Essentials', titleIcon: 'star', - description: 'Configure the features you need to start using Grafana IRM workflows', - actionButtonTitle: 'Start', + description: 'Set up the necessary features to start using Grafana IRM workflows', + actionButtonTitle: stepsDone === totalStepsToDo ? 'View' : 'Configure', stepsDone, totalStepsToDo, },