Skip to content

Commit 9001d22

Browse files
committed
fix: #352 include customer name on projects listed
1 parent ce2c931 commit 9001d22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/modules/shared/components/details-fields/details-fields.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
formControlName="project_id"
1212
>
1313
<option value="" selected="selected"></option>
14-
<option *ngFor="let project of listProjects" value="{{ project.id }}">{{ project.name }}</option>
14+
<option *ngFor="let project of listProjects" value="{{ project.id }}">{{ project.customer_name }} - {{ project.name }}</option>
1515
</select>
1616
</div>
1717

0 commit comments

Comments
 (0)