From bd8c0783475265a6ebfbf85f816dc18e8fbcc703 Mon Sep 17 00:00:00 2001 From: Ildar Iskhakov Date: Tue, 14 May 2024 01:13:29 +0800 Subject: [PATCH] Fix misleading placeholder when creating a new Alerting Integration Contact Point (#4327) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # What this PR does It was not clear that the user was expected to enter a name for the new contact point. Changed "Choose Contact Point" to "Enter New Contact Point Name" Screenshot 2024-05-09 at 3 42 50 PM ## Which issue(s) this PR closes Closes [issue link here] ## Checklist - [ ] Unit, integration, and e2e (if applicable) tests updated - [ ] Documentation added (or `pr:no public docs` PR label added if not required) - [ ] Added the relevant release notes label (see labels prefixed w/ `release:`). These labels dictate how your PR will show up in the autogenerated release notes. Co-authored-by: Joey Orlando --- .../IntegrationContactPoint/IntegrationContactPoint.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grafana-plugin/src/components/IntegrationContactPoint/IntegrationContactPoint.tsx b/grafana-plugin/src/components/IntegrationContactPoint/IntegrationContactPoint.tsx index 18542d1d..dd0a5a50 100644 --- a/grafana-plugin/src/components/IntegrationContactPoint/IntegrationContactPoint.tsx +++ b/grafana-plugin/src/components/IntegrationContactPoint/IntegrationContactPoint.tsx @@ -225,7 +225,7 @@ export const IntegrationContactPoint: React.FC<{ ) : ( { const value = (target as HTMLInputElement).value; setState({ selectedContactPoint: value });