This is an automated email from the ASF dual-hosted git repository.
klesh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/devlake.git
The following commit(s) were added to refs/heads/main by this push:
new 50010e093 fix(jira): rename "Jira Server" to "Jira Data Center" in UI
labels (#8903)
50010e093 is described below
commit 50010e093547cd73642c56fc03553e1cabc91b5f
Author: bujjibabukatta <[email protected]>
AuthorDate: Fri Jun 12 19:27:03 2026 +0530
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
---
config-ui/src/plugins/register/jira/config.tsx | 2 +-
config-ui/src/plugins/register/jira/connection-fields/auth.tsx | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/config-ui/src/plugins/register/jira/config.tsx
b/config-ui/src/plugins/register/jira/config.tsx
index c6544d6e9..d82186577 100644
--- a/config-ui/src/plugins/register/jira/config.tsx
+++ b/config-ui/src/plugins/register/jira/config.tsx
@@ -49,7 +49,7 @@ export const JiraConfig: IPluginConfig = {
'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.',
learnMore: DOC_URL.PLUGIN.JIRA.RATE_LIMIT,
externalInfo:
- 'Jira Cloud does not specify a maximum value of rate limit. For Jira
Server, please contact your admin for more information.',
+ 'Jira Cloud does not specify a maximum value of rate limit. For
Jira Server / Jira Data Center, please contact your admin for more
information.',
defaultValue: 10000,
},
],
diff --git a/config-ui/src/plugins/register/jira/connection-fields/auth.tsx
b/config-ui/src/plugins/register/jira/connection-fields/auth.tsx
index a85999ba3..bc43a6ace 100644
--- a/config-ui/src/plugins/register/jira/connection-fields/auth.tsx
+++ b/config-ui/src/plugins/register/jira/connection-fields/auth.tsx
@@ -124,7 +124,7 @@ export const Auth = ({ type, initialValues, values,
setValues, setErrors }: Prop
<Block title="Jira Version" required>
<Radio.Group value={version} onChange={handleChangeVersion}>
<Radio value="cloud">Jira Cloud</Radio>
- <Radio value="server">Jira Server</Radio>
+ <Radio value="server">Jira Server / Jira Data Center</Radio>
</Radio.Group>
<Block
@@ -136,7 +136,7 @@ export const Auth = ({ type, initialValues, values,
setValues, setErrors }: Prop
? '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 /.'
: ''}
{version === 'server'
- ? '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 /.'
+ ? '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 /.'
: ''}
</>
}