@@ -76,7 +76,16 @@ const showEditProjectModal = ref(false);
7676 :original-project =" project" ></ProjectEditModal >
7777 <TableRow :href =" route('projects.show', { project: project.id })" >
7878 <div
79- class =" whitespace-nowrap min-w-0 flex items-center space-x-5 3xl:pl-12 py-4 pr-3 text-sm font-medium text-text-primary pl-4 sm:pl-6 lg:pl-8 3xl:pl-12" >
79+ class =" whitespace-nowrap min-w-0 px-3 py-4 text-sm text-text-secondary pl-4 sm:pl-6 lg:pl-8 3xl:pl-12" >
80+ <div
81+ v-if =" project.client_id"
82+ class =" overflow-ellipsis overflow-hidden" >
83+ {{ client?.name }}
84+ </div >
85+ <div v-else >No client</div >
86+ </div >
87+ <div
88+ class =" whitespace-nowrap min-w-0 flex items-center space-x-5 py-4 pr-3 text-sm font-medium text-text-primary" >
8089 <div
8190 :style =" {
8291 backgroundColor: project.color,
@@ -90,15 +99,6 @@ const showEditProjectModal = ref(false);
9099 {{ projectTasksCount }} Tasks
91100 </span >
92101 </div >
93- <div
94- class =" whitespace-nowrap min-w-0 px-3 py-4 text-sm text-text-secondary" >
95- <div
96- v-if =" project.client_id"
97- class =" overflow-ellipsis overflow-hidden" >
98- {{ client?.name }}
99- </div >
100- <div v-else >No client</div >
101- </div >
102102 <div class =" whitespace-nowrap px-3 py-4 text-sm text-text-secondary" >
103103 <div v-if =" project.spent_time" >
104104 {{
@@ -126,11 +126,6 @@ const showEditProjectModal = ref(false);
126126 class =" whitespace-nowrap px-3 py-4 text-sm text-text-secondary" >
127127 {{ billableRateInfo }}
128128 </div >
129- <div
130- class =" whitespace-nowrap px-3 py-4 text-sm text-text-secondary flex space-x-1 items-center font-medium" >
131- <CheckCircleIcon class =" w-5" ></CheckCircleIcon >
132- <span >Active</span >
133- </div >
134129 <div
135130 class =" relative whitespace-nowrap flex items-center pl-3 text-right text-sm font-medium pr-4 sm:pr-6 lg:pr-8 3xl:pr-12" >
136131 <ProjectMoreOptionsDropdown
0 commit comments