refactor(系统设置): 优化删除项目的提示信息

--bug=1035007 --user=王孝刚 【系统设置】组织-项目-删除项目,提示文案错误
https://www.tapd.cn/55049933/s/1469779
This commit is contained in:
wxg0103 2024-03-05 20:29:27 +08:00 committed by 刘瑞斌
parent 74dce4fc99
commit 06d72c5fd8
1 changed files with 2 additions and 2 deletions

View File

@ -351,8 +351,8 @@
};
const handleDelete = (record: TableData) => {
openDeleteModal({
title: t('system.organization.deleteName', { name: characterLimit(record.name) }),
content: t('system.organization.deleteTip'),
title: t('system.project.deleteName', { name: characterLimit(record.name) }),
content: t('system.project.deleteTip'),
onBeforeOk: async () => {
try {
await deleteProjectByOrg(record.id);