Skip to content

Commit 19c9408

Browse files
authored
Merge pull request #372 from ioet/352-include-customer-name
fix: #352 include customer name on projects listed
2 parents ce2c931 + 9001d22 commit 19c9408

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)