sync: soul-admin 页面 | 原因: 前端页面修改

This commit is contained in:
卡若
2026-03-08 15:42:38 +08:00
parent e1a70f3987
commit e1a10a297e

View File

@@ -187,10 +187,12 @@ export function MatchPoolTab() {
</span>
</div>
<p className="text-gray-500 text-xs mt-2">{opt.desc}</p>
<a href={`/users?pool=${opt.value}`} onClick={e => e.stopPropagation()}
className="text-[#38bdac] text-xs mt-2 inline-block hover:underline">
<span role="link" tabIndex={0}
onClick={e => { e.stopPropagation(); navigate(`/users?pool=${opt.value}`) }}
onKeyDown={e => { if (e.key === 'Enter') { e.stopPropagation(); navigate(`/users?pool=${opt.value}`) } }}
className="text-[#38bdac] text-xs mt-2 inline-block hover:underline cursor-pointer">
</a>
</span>
</button>
)
})}