Skip to content

Commit

Permalink
Fix debugger tab names
Browse files Browse the repository at this point in the history
  • Loading branch information
hetunandu committed Oct 7, 2024
1 parent d74ba51 commit f439f39
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ function JSResponseView(props: Props) {

const tabs: BottomTab[] = [
{
key: "response",
key: DEBUGGER_TAB_KEYS.RESPONSE_TAB,
title: createMessage(DEBUGGER_RESPONSE),
panelComponent: (
<>
Expand Down
4 changes: 2 additions & 2 deletions app/client/src/pages/Editor/QueryEditor/QueryDebuggerTabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ function QueryDebuggerTabs({

if (currentActionConfig) {
responseTabs.unshift({
key: "response",
key: DEBUGGER_TAB_KEYS.RESPONSE_TAB,
title: createMessage(DEBUGGER_RESPONSE),
panelComponent: (
<QueryResponseTab
Expand All @@ -243,7 +243,7 @@ function QueryDebuggerTabs({

if (showSchema && currentActionConfig && currentActionConfig.datasource) {
responseTabs.unshift({
key: "schema",
key: DEBUGGER_TAB_KEYS.SCHEMA_TAB,
title: "Schema",
panelComponent: (
<Schema
Expand Down

0 comments on commit f439f39

Please sign in to comment.