Merge remote-tracking branch 'github-pro/main' into feature/liujian-1.9

This commit is contained in:
Liujian
2025-07-17 17:33:30 +08:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -153,7 +153,7 @@ const Login: FC = () => {
// 打开飞书授权页面
const openFeishuLogin = () => {
const href = location.href
const href = window.location.origin + window.location.pathname
const authUrl = `https://accounts.feishu.cn/open-apis/authen/v1/authorize?client_id=${feishuAppId}&redirect_uri=${href}`
localStorage.setItem('feishuCallbackUrl', href)
window.location.href = authUrl
@@ -396,7 +396,7 @@ const MemberList = () => {
width: 600,
okText: $t('确认'),
okButtonProps: {
disabled: isActionAllowed(type) || entity?.form !== 'self-build'
disabled: isActionAllowed(type) || (type === 'editMember' && entity?.form !== 'self-build')
},
cancelText: $t('取消'),
closable: true,