diff --git a/resources/js/Components/Common/Project/ProjectTable.vue b/resources/js/Components/Common/Project/ProjectTable.vue index b84965e4..730e2a38 100644 --- a/resources/js/Components/Common/Project/ProjectTable.vue +++ b/resources/js/Components/Common/Project/ProjectTable.vue @@ -65,9 +65,19 @@ import { isAllowedToPerformPremiumAction } from '@/utils/billing'; v-if="projects.length === 0"> -

No projects found

-

- Create your first project now! +

+ {{ + canCreateProjects() + ? 'No projects found' + : 'You are not a member of any projects' + }} +

+

+ {{ + canCreateProjects() + ? 'Create your first project now!' + : 'Ask your manager to add you to a project as a team member.' + }}