This is an automated email from the ASF dual-hosted git repository.
likyh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/main by this push:
new 7da82d3b1 fix(config-ui): some bugs (#4564)
7da82d3b1 is described below
commit 7da82d3b1bab9ac26917624612dfb65bf57fcd51
Author: 青湛 <[email protected]>
AuthorDate: Thu Mar 2 10:36:18 2023 +0800
fix(config-ui): some bugs (#4564)
* fix(config-ui): adjust the typo for transformation
* fix(config-ui): add separator for data entities description
* fix(config-ui): connection config for sonarqube
---
config-ui/src/plugins/components/data-scope/index.tsx | 2 +-
config-ui/src/plugins/components/transformation/index.tsx | 4 ++--
config-ui/src/plugins/register/sonarqube/config.ts | 4 ++--
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/config-ui/src/plugins/components/data-scope/index.tsx
b/config-ui/src/plugins/components/data-scope/index.tsx
index b71c5a115..7f86399a9 100644
--- a/config-ui/src/plugins/components/data-scope/index.tsx
+++ b/config-ui/src/plugins/components/data-scope/index.tsx
@@ -75,7 +75,7 @@ export const DataScope = ({ plugin, connectionId, entities,
onCancel, ...props }
<div className="block">
<h3>Data Entities</h3>
<p>
- <span>Select the data entities you wish to collect for the
projects.</span>
+ <span>Select the data entities you wish to collect for the
projects.</span>{' '}
<a
href="https://devlake.apache.org/docs/DataModels/DevLakeDomainLayerSchema/#data-models"
target="_blank"
diff --git a/config-ui/src/plugins/components/transformation/index.tsx
b/config-ui/src/plugins/components/transformation/index.tsx
index 389eb1f83..f9a988a16 100644
--- a/config-ui/src/plugins/components/transformation/index.tsx
+++ b/config-ui/src/plugins/components/transformation/index.tsx
@@ -70,7 +70,7 @@ export const Transformation = ({ from, plugin, connectionId,
onCancel, ...props
<div className="block">
<RadioGroup selectedValue={type} onChange={handleChangeType}>
- <Radio label="Creating a new transformation" value="create" />
+ <Radio label="Create a new transformation" value="create" />
<Radio
label={
from === 'create'
@@ -79,7 +79,7 @@ export const Transformation = ({ from, plugin, connectionId,
onCancel, ...props
}
value="createByExist"
/>
- <Radio label="Selecting an existing transformation"
value="selectExist" />
+ <Radio label="Select an existing transformation" value="selectExist"
/>
</RadioGroup>
</div>
diff --git a/config-ui/src/plugins/register/sonarqube/config.ts
b/config-ui/src/plugins/register/sonarqube/config.ts
index fe7df9604..37dfd2c33 100644
--- a/config-ui/src/plugins/register/sonarqube/config.ts
+++ b/config-ui/src/plugins/register/sonarqube/config.ts
@@ -37,8 +37,8 @@ export const SonarQubeConfig: PluginConfigType = {
{
key: 'rateLimitPerHour',
subLabel:
- 'By default, DevLake uses 10,000 requests/hour for data collection
for SonarQube. But you can adjust the collection speed by setting up your
desirable rate limit. Learn more',
- learnMore:
'https://devlake.apache.org/docs/UserManuals/ConfigUI/AzureDevOps/#custom-rate-limit-optional',
+ 'By default, DevLake uses 10,000 requests/hour for data collection
for SonarQube. But you can adjust the collection speed by setting up your
desirable rate limit.',
+ learnMore:
'https://devlake.apache.org/docs/Configuration/SonarQube#custom-rate-limit-optional',
externalInfo: 'SonarQube does not specify a maximum value of rate
limit.',
defaultValue: 10000,
},