1<tr ngFor="let item of typeDons">
2 <td>{{ item?.name }}</td> <!-- notice the question mark -->
3 <td>{{ item?.description }}</td>
4 <td>
5 <button type="button" >Edit</button>
6 <button type="button" >Delete</button>
7 </td>
8</tr>