diff --git a/frontend/src/views/setting/system/organizationAndProject/components/systemOrganization.vue b/frontend/src/views/setting/system/organizationAndProject/components/systemOrganization.vue
index 73bc128753..97c1fcdec7 100644
--- a/frontend/src/views/setting/system/organizationAndProject/components/systemOrganization.vue
+++ b/frontend/src/views/setting/system/organizationAndProject/components/systemOrganization.vue
@@ -35,37 +35,41 @@
v-if="hasAnyPermission(['SYSTEM_ORGANIZATION_PROJECT:READ+UPDATE'])"
class="primary-color"
@click="showProjectDrawer(record)"
- >{{ record.projectCount }}
+ {{ record.projectCount }}
+
{{ record.projectCount }}
- {{
- t('common.revokeDelete')
- }}
+
+ {{ t('common.revokeDelete') }}
+
- {{
- t('common.delete')
- }}
+
+ {{ t('common.delete') }}
+
- {{
- t('common.edit')
- }}
- {{
- t('system.organization.addMember')
- }}
-
- {{
- t('system.project.enterOrganization')
- }}
+
+ {{ t('common.edit') }}
+
+
+ {{ t('system.organization.addMember') }}
+
+
+ {{ t('system.project.enterOrganization') }}
+
+ />
@@ -113,6 +117,7 @@
import useModal from '@/hooks/useModal';
import { useTableStore } from '@/store';
import useAppStore from '@/store/modules/app';
+ import useLicenseStore from '@/store/modules/setting/license';
import { characterLimit } from '@/utils';
import { hasAnyPermission } from '@/utils/permission';
@@ -121,6 +126,8 @@
import { enterOrganization } from '@/views/setting/utils';
+ const licenseStore = useLicenseStore();
+
const appStore = useAppStore();
export interface SystemOrganizationProps {