From e29269d5525350df6daf15bec627c2aa45862c2c Mon Sep 17 00:00:00 2001 From: Matteo Bronkhorst <32799956+DrumsnChocolate@users.noreply.github.com> Date: Wed, 6 Sep 2023 13:29:28 +0200 Subject: [PATCH] fix problem with loading current response (#801) * fix problem with loading current response * fix problem with loading current response --- app/routes/activities/activity/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/routes/activities/activity/index.js b/app/routes/activities/activity/index.js index c5d175e0c..5991fa0d8 100644 --- a/app/routes/activities/activity/index.js +++ b/app/routes/activities/activity/index.js @@ -1,8 +1,10 @@ import { ApplicationRoute } from 'amber-ui/routes/application/application'; import FormLoadOrCreateUtil from 'amber-ui/utils/form-load-or-create'; import { hash } from 'rsvp'; +import { inject as service } from '@ember/service'; export default class ActivityIndexRoute extends ApplicationRoute { + @service store; constructor() { super(...arguments); this.formLoadOrCreateUtil = new FormLoadOrCreateUtil(this);