From d1028e0a769b7d28d29170390710991147675848 Mon Sep 17 00:00:00 2001 From: Fabrizio Vitale Date: Sat, 8 Jan 2022 21:01:30 +0100 Subject: [PATCH] fix(rtk-query-monitor): capitalize tabs #995 (#996) --- .../src/containers/QueryPreview.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/redux-devtools-rtk-query-monitor/src/containers/QueryPreview.tsx b/packages/redux-devtools-rtk-query-monitor/src/containers/QueryPreview.tsx index 1a0f62e6..67f47703 100644 --- a/packages/redux-devtools-rtk-query-monitor/src/containers/QueryPreview.tsx +++ b/packages/redux-devtools-rtk-query-monitor/src/containers/QueryPreview.tsx @@ -94,7 +94,7 @@ const tabs: ReadonlyArray< TabOption > = [ { - label: 'query', + label: 'Query', value: QueryPreviewTabs.queryinfo, component: MappedQueryPreviewInfo, visible: { @@ -104,7 +104,7 @@ const tabs: ReadonlyArray< }, }, { - label: 'actions', + label: 'Actions', value: QueryPreviewTabs.actions, component: MappedQueryPreviewActions, visible: { @@ -114,7 +114,7 @@ const tabs: ReadonlyArray< }, }, { - label: 'tags', + label: 'Tags', value: QueryPreviewTabs.queryTags, component: MappedQueryPreviewTags, visible: { @@ -124,7 +124,7 @@ const tabs: ReadonlyArray< }, }, { - label: 'subs', + label: 'Subs', value: QueryPreviewTabs.querySubscriptions, component: MappedQuerySubscriptipns, visible: { @@ -134,7 +134,7 @@ const tabs: ReadonlyArray< }, }, { - label: 'api', + label: 'Api', value: QueryPreviewTabs.apiConfig, component: MappedApiPreview, },