From 7a84a2df2b4d1e26176beca3fc5a027a83280d76 Mon Sep 17 00:00:00 2001 From: Amir Blum Date: Sun, 29 Sep 2024 10:24:05 +0300 Subject: [PATCH] fix: better texts in ui (#1554) Just 2 minor changes to texts to make them a bit better --- .../create.connection.form/create.connection.form.tsx | 2 +- .../containers/main/instrumentation-rules/choose-rule/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/webapp/components/setup/connection/create.connection.form/create.connection.form.tsx b/frontend/webapp/components/setup/connection/create.connection.form/create.connection.form.tsx index 4d893ccc6..e047df7cd 100644 --- a/frontend/webapp/components/setup/connection/create.connection.form/create.connection.form.tsx +++ b/frontend/webapp/components/setup/connection/create.connection.form/create.connection.form.tsx @@ -256,7 +256,7 @@ export function CreateConnectionForm({ ) : isConnectionTested.enabled === null ? ( - {'Check Connection'} + {'Test Connection'} ) : isConnectionTested.enabled ? ( diff --git a/frontend/webapp/containers/main/instrumentation-rules/choose-rule/index.tsx b/frontend/webapp/containers/main/instrumentation-rules/choose-rule/index.tsx index 6b3b171e3..f66661a29 100644 --- a/frontend/webapp/containers/main/instrumentation-rules/choose-rule/index.tsx +++ b/frontend/webapp/containers/main/instrumentation-rules/choose-rule/index.tsx @@ -15,7 +15,7 @@ const ITEMS = [ { id: 'payload-collection', title: 'Payload Collection', - description: 'Collect payloads from logs, metrics, and traces.', + description: 'Record operation payloads as span attributes where supported.', type: InstrumentationRuleType.PAYLOAD_COLLECTION, icon: InstrumentationRuleType.PAYLOAD_COLLECTION, },