+
{{ activeStepDetailCopy?.content?.responseResult.responseCode || '-' }}
@@ -43,7 +47,9 @@
- {{ timingInfo?.responseTime || 0 }} ms
+
+ {{ timingInfo?.responseTime || 0 }} ms
+
{{ t('apiTestDebug.responseTime') }}
@@ -53,7 +59,10 @@
-
+
{{ activeStepDetail?.content?.responseResult.responseSize || '-' }} bytes
diff --git a/frontend/src/views/case-management/caseManagementFeature/components/caseTemplateDetail.vue b/frontend/src/views/case-management/caseManagementFeature/components/caseTemplateDetail.vue
index d2ae142511..5a9b15447a 100644
--- a/frontend/src/views/case-management/caseManagementFeature/components/caseTemplateDetail.vue
+++ b/frontend/src/views/case-management/caseManagementFeature/components/caseTemplateDetail.vue
@@ -362,6 +362,7 @@
() => {
const res = stepData.value.map((item, index) => {
return {
+ id: item.id,
num: index,
desc: item.step,
result: item.expected,
@@ -538,6 +539,7 @@
if (steps) {
stepData.value = JSON.parse(steps).map((item: any) => {
return {
+ id: item.id,
step: item.desc,
expected: item.result,
};
@@ -846,4 +848,4 @@
color: var(--color-text-4);
background: var(--color-text-n8);
}
-
\ No newline at end of file
+
diff --git a/frontend/src/views/login/components/login-form.vue b/frontend/src/views/login/components/login-form.vue
index 7be77c84b1..4ca605c600 100644
--- a/frontend/src/views/login/components/login-form.vue
+++ b/frontend/src/views/login/components/login-form.vue
@@ -56,20 +56,20 @@
{{ t('login.form.login') }}
-
+
{{ t('login.form.modeLoginMethods') }}
-
+
LDAP
-
+
OIDC
-
@@ -212,6 +212,12 @@
const isShowLDAP = computed(() => {
return userStore.loginType.includes('LDAP');
});
+ const isShowOIDC = computed(() => {
+ return userStore.loginType.includes('OIDC');
+ });
+ const isShowOAUTH = computed(() => {
+ return userStore.loginType.includes('OAuth2');
+ });
onMounted(() => {
userStore.getAuthentication();
diff --git a/frontend/src/views/project-management/commonScript/index.vue b/frontend/src/views/project-management/commonScript/index.vue
index eb152098a5..d3cea9749e 100644
--- a/frontend/src/views/project-management/commonScript/index.vue
+++ b/frontend/src/views/project-management/commonScript/index.vue
@@ -9,6 +9,9 @@
:placeholder="t('project.commonScript.searchByNameAndId')"
allow-clear
class="mx-[8px] w-[240px]"
+ @search="searchList"
+ @press-enter="searchList"
+ @clear="searchList"
/>
@@ -128,6 +131,7 @@
\ No newline at end of file
+
diff --git a/frontend/src/views/setting/organization/serviceIntegration/index.vue b/frontend/src/views/setting/organization/serviceIntegration/index.vue
index d1742ed172..d6cde3c10c 100644
--- a/frontend/src/views/setting/organization/serviceIntegration/index.vue
+++ b/frontend/src/views/setting/organization/serviceIntegration/index.vue
@@ -160,6 +160,9 @@
:deep(.arco-scrollbar-container) {
width: 100% !important;
}
+ :deep(.arco-collapse-item-header-right + .arco-collapse-item-content) {
+ padding: 0;
+ }
.item {
padding: 16px;
width: calc(50% - 10px);