Revert "Rename "Add new data source" to "Connect data"" (#74321)

Revert "Rename "Add new data source" to "Connect data" (#73688)"

This reverts commit 7543a28ae2.
This commit is contained in:
Ivan Ortega Alba 2023-09-05 12:43:35 +02:00 committed by GitHub
parent 58efa49933
commit 087e1658c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 11 deletions

View File

@ -38,7 +38,7 @@ Dashboards and panels allow you to show your data in visual form. Each panel nee
- Select one of your existing data sources.
- Select one of the Grafana's [built-in special data sources]({{< relref "../../../datasources/#special-data-sources" >}}).
- Click **Connect data** to set up a new one (Admins only).
- Click **Configure a new data source** to set up a new one (Admins only).
{{< figure class="float-right" src="/media/docs/grafana/dashboards/screenshot-data-source-selector-10.0.png" max-width="800px" alt="Select data source modal" >}}

View File

@ -19,11 +19,11 @@ export function AddNewDataSourceButton({ variant, onClick }: AddNewDataSourceBut
variant={variant || 'primary'}
href={newDataSourceURL}
disabled={!hasCreateRights}
tooltip={!hasCreateRights ? 'You do not have permission to add a new connection' : undefined}
tooltip={!hasCreateRights ? 'You do not have permission to configure new data sources' : undefined}
onClick={onClick}
target="_blank"
>
Connect data
Configure a new data source
</LinkButton>
);
}

View File

@ -281,7 +281,7 @@ describe('DataSourceDropdown', () => {
await user.keyboard('foobarbaz'); //Search for a DS that should not exist
expect(await screen.findByText('Connect data')).toBeInTheDocument();
expect(await screen.findByText('Configure a new data source')).toBeInTheDocument();
});
it('should call onChange with the default query when add csv is clicked', async () => {

View File

@ -95,7 +95,7 @@ describe('DataSourceDropdown', () => {
await user.click(searchBox!);
await user.keyboard('foobarbaz'); //Search for a DS that should not exist
expect(screen.queryAllByText('Connect data')).toHaveLength(2);
expect(screen.queryAllByText('Configure a new data source')).toHaveLength(2);
});
it('only displays the file drop area when the the ff is enabled', async () => {

View File

@ -167,7 +167,6 @@ export function DataSourceModal({
/>
<CustomScrollbar>
<DataSourceList
className={styles.dataSourceList}
onChange={onChangeDataSource}
current={current}
onClickEmptyStateCTA={() =>
@ -212,7 +211,7 @@ export function DataSourceModal({
)}
</div>
<div className={styles.newDSSection}>
<span className={styles.newDSDescription}>Open a new tab and configure a new connection</span>
<span className={styles.newDSDescription}>Open a new tab and configure a data source</span>
<AddNewDataSourceButton
variant="secondary"
onClick={() => {
@ -266,10 +265,6 @@ function getDataSourceModalStyles(theme: GrafanaTheme2) {
overflow-y: auto;
}
`,
dataSourceList: css`
flex: 1 1;
height: 100%;
}`,
rightColumn: css`
display: flex;
flex-direction: column;