Hey @rzky, I think you just have a minor syntax error which is causing the issue. Instead of saying
let month = this.get('article').month;
I think you should try:
let month = this.get('article.month');
Since the ember data model is not just a POJO you should use ‘get’ to reference any attribute on it.
If I may, I’d also suggest using a computed property instead of messing with didReceiveAttrs for this specific case. So instead of the above code that you had, just add this to your component: