I have the error in my code. The error says like this: v.context.$implicit is undefined
The problem is, sometimes it error, and sometimes it doesn’t… Can somebody expla
i can't really help if i don't see you're TS code. The same problem occured to me and my mistake was to try to insert a new data in an array like result[i] = data[i] and not like result.push(data[i]) which is actually correct. Hope it helps !
result[i] = data[i]
result.push(data[i])