Skip to content

Commit 50010e0

Browse files
fix(jira): rename "Jira Server" to "Jira Data Center" in UI labels (#8903)
* fix(jira): rename Jira Server to Jira Data Center in UI labels * fix(jira): show both Jira Server and Jira Data Center labels
1 parent 33f7d34 commit 50010e0

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

config-ui/src/plugins/register/jira/config.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export const JiraConfig: IPluginConfig = {
4949
'By default, DevLake uses dynamic rate limit for optimized data collection for Jira. But you can adjust the collection speed by setting up your desirable rate limit.',
5050
learnMore: DOC_URL.PLUGIN.JIRA.RATE_LIMIT,
5151
externalInfo:
52-
'Jira Cloud does not specify a maximum value of rate limit. For Jira Server, please contact your admin for more information.',
52+
'Jira Cloud does not specify a maximum value of rate limit. For Jira Server / Jira Data Center, please contact your admin for more information.',
5353
defaultValue: 10000,
5454
},
5555
],

config-ui/src/plugins/register/jira/connection-fields/auth.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export const Auth = ({ type, initialValues, values, setValues, setErrors }: Prop
124124
<Block title="Jira Version" required>
125125
<Radio.Group value={version} onChange={handleChangeVersion}>
126126
<Radio value="cloud">Jira Cloud</Radio>
127-
<Radio value="server">Jira Server</Radio>
127+
<Radio value="server">Jira Server / Jira Data Center</Radio>
128128
</Radio.Group>
129129

130130
<Block
@@ -136,7 +136,7 @@ export const Auth = ({ type, initialValues, values, setValues, setErrors }: Prop
136136
? 'Provide the Jira instance API endpoint. For Jira Cloud, e.g. https://your-company.atlassian.net/rest/. Please note that the endpoint URL should end with /.'
137137
: ''}
138138
{version === 'server'
139-
? 'Provide the Jira instance API endpoint. For Jira Server, e.g. https://jira.your-company.com/rest/. Please note that the endpoint URL should end with /.'
139+
? 'Provide the Jira instance API endpoint. For Jira Server / Jira Data Center, e.g. https://jira.your-company.com/rest/. Please note that the endpoint URL should end with /.'
140140
: ''}
141141
</>
142142
}

0 commit comments

Comments
 (0)