In my project, I am working with two different JSON files named contacts
and workers
.
- Currently, I am using
*ngFor
to display thename
of the contacts. - In addition, I am also displaying the
assigned workers
for each contact in adropdown
, as shown below:
https://i.sstatic.net/4LpU0.png
However, my goal is to show the
assigned workers
for eachcontact
along with the complete list of allworkers
.
This is the desired outcome:
https://i.sstatic.net/O0lql.png
This way, I will have the ability to modify the assigned workers as needed.