Skip to content

Commit 8cc05eb

Browse files
Merge pull request #8223 from TencentBlueKing/v3.11.x
Merge branch v3.11.x to v3.13.x
2 parents 5da88d2 + 5457712 commit 8cc05eb

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/ui/src/views/business-set/index.vue

+2-1
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,8 @@
407407

408408
const handleDelete = (inst) => {
409409
$bkInfo({
410-
title: t('确认要删除', { name: inst[MODEL_NAME_KEY] }),
410+
title: '确定删除',
411+
subTitle: t('确认要删除', { name: inst[MODEL_NAME_KEY] }),
411412
confirmLoading: true,
412413
confirmFn: async () => {
413414
try {

src/ui/src/views/field-template/children/use-template.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ export default function useTemplate(templates) {
2323
return
2424
}
2525
$bkInfo({
26-
title: t('确认要删除', { name: template.name }),
26+
title: '确定删除',
27+
subTitle: t('确认要删除', { name: template.name }),
2728
confirmLoading: true,
2829
confirmFn: async () => {
2930
try {

src/ui/src/views/general-model/index.vue

+2-1
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,8 @@
777777
},
778778
handleDelete(inst) {
779779
this.$bkInfo({
780-
title: this.$t('确认要删除', { name: inst.bk_inst_name }),
780+
title: '确定删除',
781+
subTitle: this.$t('确认要删除', { name: inst.bk_inst_name }),
781782
confirmFn: () => {
782783
this.deleteInst({
783784
objId: this.objId,

0 commit comments

Comments
 (0)