fix: Minor changes in Datasource and API (#38371)

This commit is contained in:
Hetu Nandu 2024-12-26 12:43:17 +05:30 committed by GitHub
parent 3c802d9e56
commit b9504b607e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 9 additions and 3 deletions

View File

@ -52,7 +52,11 @@ const CommonEditorForm = (props: Props) => {
const paramsCount = getParamsCount(actionParams, datasourceHeaders);
return (
<Styled.Tabs onValueChange={setCurrentTab} value={currentTab}>
<Styled.Tabs
data-testid={props.dataTestId}
onValueChange={setCurrentTab}
value={currentTab}
>
<Styled.FormHeader>
<InfoFields
actionName={action.name}

View File

@ -2307,6 +2307,7 @@ export const DATA_PANE_TITLE = () => "Datasources in your workspace";
export const DATASOURCE_LIST_BLANK_DESCRIPTION = () =>
"Connect a datasource to write your first query";
export const DATASOURCE_BLANK_STATE_MESSAGE = () => "No datasources to display";
export const DATASOURCE_BLANK_STATE_CTA = () => "Bring your data";
// Create New Apps Intermediary step
export const CREATE_NEW_APPS_STEP_TITLE = () => "How would you like to start?";

View File

@ -17,11 +17,12 @@ import { useLocation } from "react-router";
import {
createMessage,
DATA_PANE_TITLE,
DATASOURCE_BLANK_STATE_CTA,
DATASOURCE_LIST_BLANK_DESCRIPTION,
} from "ee/constants/messages";
import PaneHeader from "./PaneHeader";
import { useEditorType } from "ee/hooks";
import { INTEGRATION_TABS } from "../../../../constants/routes";
import { INTEGRATION_TABS } from "constants/routes";
import type { AppState } from "ee/reducers";
import { getCurrentAppWorkspace } from "ee/selectors/selectedWorkspaceSelectors";
import { useFeatureFlag } from "utils/hooks/useFeatureFlag";
@ -99,7 +100,7 @@ const DataSidePane = (props: DataSidePaneProps) => {
() => ({
className: "t--add-datasource-button-blank-screen",
testId: "t--add-datasource-button-blank-screen",
text: createMessage(DATA_PANE_TITLE),
text: createMessage(DATASOURCE_BLANK_STATE_CTA),
onClick: canCreateDatasource ? addButtonClickHandler : undefined,
}),
[addButtonClickHandler, canCreateDatasource],