balibabu
commited on
Commit
·
a5bdd87
1
Parent(s):
0de1478
feat: grey out the team function #1221 (#1244)
Browse files### What problem does this PR solve?
Grey out the team function #1221
### Type of change
- [x] New Feature (non-breaking change which adds functionality)
web/src/pages/user-setting/setting-team/index.tsx
CHANGED
@@ -15,7 +15,9 @@ const UserSettingTeam = () => {
|
|
15 |
<span>
|
16 |
{userInfo.nickname} {t('workspace')}
|
17 |
</span>
|
18 |
-
<Button type="primary">
|
|
|
|
|
19 |
</Flex>
|
20 |
</Card>
|
21 |
</div>
|
|
|
15 |
<span>
|
16 |
{userInfo.nickname} {t('workspace')}
|
17 |
</span>
|
18 |
+
<Button type="primary" disabled>
|
19 |
+
{t('upgrade')}
|
20 |
+
</Button>
|
21 |
</Flex>
|
22 |
</Card>
|
23 |
</div>
|