36 lines
1.5 KiB
Diff
36 lines
1.5 KiB
Diff
From 753afbe9f0e2202146415fc7d00f127289475112 Mon Sep 17 00:00:00 2001
|
|
From: Hu Gang <18768366022@163.com>
|
|
Date: Thu, 18 Jul 2024 19:32:15 +0800
|
|
Subject: [PATCH] Fixed the issue of incorrect password prompt when hot
|
|
modifying password
|
|
|
|
---
|
|
src/views/leaks/components/CreateRepairTaskDrawer.vue | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/views/leaks/components/CreateRepairTaskDrawer.vue b/src/views/leaks/components/CreateRepairTaskDrawer.vue
|
|
index 6074199..51645d5 100644
|
|
--- a/src/views/leaks/components/CreateRepairTaskDrawer.vue
|
|
+++ b/src/views/leaks/components/CreateRepairTaskDrawer.vue
|
|
@@ -204,7 +204,7 @@
|
|
<h3>{{ jumpModalTitle || '成功' }}</h3>
|
|
<p v-for="item in jumpTaskId" :key="item.task_id">
|
|
<a @click="jumpToPage(item)"
|
|
- >点击跳转到 {{taskTypsEnum[taskType]}}任务页面</a
|
|
+ >点击跳转到{{ item.fix_way }}{{ taskType === 'cve fix' ? '修复' : '移除' }}任务页面</a
|
|
>
|
|
</p>
|
|
<p v-if="jumpTaskId.length > 1">
|
|
@@ -928,7 +928,7 @@ export default {
|
|
this.handleExcuteASAP(res.data.task_id, res.data);
|
|
} else {
|
|
this.visible = false;
|
|
- this.handleGenerateSuccess(res.data, 'CVE回滚', 'normal');
|
|
+ this.handleGenerateSuccess(res.data, '热补丁移除', 'normal');
|
|
}
|
|
})
|
|
.catch((err) => {
|
|
--
|
|
2.33.0
|
|
|