@@ -72,7 +72,7 @@ const billableRateInfo = computed(() => {
7272 return ' Default Rate' ;
7373 }
7474 }
75- return ' -- ' ;
75+ return null ;
7676});
7777
7878const showEditProjectModal = ref (false );
@@ -98,13 +98,13 @@ const showEditProjectModal = ref(false);
9898 </span >
9999 <span class =" text-text-secondary" > {{ projectTasksCount }} Tasks </span >
100100 </div >
101- <div class =" whitespace-nowrap min-w-0 px-3 py-4 text-sm text-text-secondary " >
101+ <div class =" whitespace-nowrap min-w-0 px-3 py-4 text-sm text-text-primary " >
102102 <div v-if =" project.client_id" class =" overflow-ellipsis overflow-hidden" >
103103 {{ client?.name }}
104104 </div >
105- <div v-else >No client</div >
105+ <div v-else class = " text-text-tertiary " >No client</div >
106106 </div >
107- <div class =" whitespace-nowrap px-3 py-4 text-sm text-text-secondary " >
107+ <div class =" whitespace-nowrap px-3 py-4 text-sm text-text-primary " >
108108 <div v-if =" project.spent_time" >
109109 {{
110110 formatHumanReadableDuration(
@@ -114,23 +114,24 @@ const showEditProjectModal = ref(false);
114114 )
115115 }}
116116 </div >
117- <div v-else >--</div >
117+ <div v-else class = " text-text-tertiary " >--</div >
118118 </div >
119- <div class =" whitespace-nowrap px-3 flex items-center text-sm text-text-secondary " >
119+ <div class =" whitespace-nowrap px-3 flex items-center text-sm text-text-primary " >
120120 <UpgradeBadge v-if =" !isAllowedToPerformPremiumAction()" ></UpgradeBadge >
121121 <EstimatedTimeProgress
122122 v-else-if =" project.estimated_time"
123123 :estimated =" project.estimated_time"
124124 :current =" project.spent_time" ></EstimatedTimeProgress >
125- <span v-else > -- </span >
125+ <span v-else class = " text-text-tertiary " > -- </span >
126126 </div >
127127 <div
128128 v-if =" showBillableRate"
129- class =" whitespace-nowrap px-3 py-4 text-sm text-text-secondary" >
130- {{ billableRateInfo }}
129+ class =" whitespace-nowrap px-3 py-4 text-sm text-text-primary" >
130+ <span v-if =" billableRateInfo" >{{ billableRateInfo }}</span >
131+ <span v-else class =" text-text-tertiary" >--</span >
131132 </div >
132133 <div
133- class =" whitespace-nowrap px-3 py-4 text-sm text-text-secondary flex space-x-1.5 items-center font-medium" >
134+ class =" whitespace-nowrap px-3 py-4 text-sm text-text-primary flex space-x-1.5 items-center font-medium" >
134135 <template v-if =" project .is_archived " >
135136 <ArchiveBoxIcon class =" w-4 text-icon-default" ></ArchiveBoxIcon >
136137 <span >Archived</span >
0 commit comments