Commit 90521216 authored by nick zheng's avatar nick zheng

fix: 已创建的应用不提示达到上限

parent 94ed1b55
......@@ -360,7 +360,7 @@ async function handleEquityInfoValidate() {
await userStore.fetchUpdateEquityInfo()
if (userStore.equityInfo.usedAgentCount >= userStore.equityInfo.maxAgentCount) {
if (userStore.equityInfo.usedAgentCount >= userStore.equityInfo.maxAgentCount && !baseInfo.value.agentId) {
window.$message
.ctWarning(t('equity_module.agents_created_exceeds_tip'), '', t('common_module.back'))
.then(() => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment