I'm encountering an issue while trying to access a nested object property.
<th data-toggle="tooltip" data-placement="bottom" v-for="schedule in employee.daily_schedules">{{schedule.start}}-{{schedule.end}}-{{schedule.employee_function.name}}</th>
Upon attempting to retrieve the schedule.employee_function.name, I am faced with an error
(TypeError: u.employee_function is null)
However, if I display schedule.employee_function, the complete object is visible:
https://i.sstatic.net/cfmy1.png
This is the specific object retrieved from the API: