From c4d5c705cf8ccb4eea186b1b3a467edffa7ba5cf Mon Sep 17 00:00:00 2001 From: Ash <0Calories@users.noreply.github.com> Date: Mon, 26 Aug 2024 10:14:42 -0400 Subject: [PATCH] chore(insights): Rename `SQL Command` label to generic `Command` (#76354) Renames the label in the Queries module for the DB command selector to something more generic, since we will be supporting more than just SQL. ![image](https://github.com/user-attachments/assets/ae991643-196a-49a0-a39f-33bee890d6cd) --- .../insights/common/views/spans/selectors/actionSelector.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/app/views/insights/common/views/spans/selectors/actionSelector.tsx b/static/app/views/insights/common/views/spans/selectors/actionSelector.tsx index c44f9cd29b1518..9f6964d0cd37fa 100644 --- a/static/app/views/insights/common/views/spans/selectors/actionSelector.tsx +++ b/static/app/views/insights/common/views/spans/selectors/actionSelector.tsx @@ -98,7 +98,7 @@ const HTTP_ACTION_OPTIONS = [ const LABEL_FOR_MODULE_NAME: {[key in ModuleName]: ReactNode} = { http: t('HTTP Method'), - db: t('SQL Command'), + db: t('Command'), cache: t('Action'), vital: t('Action'), queue: t('Action'),