From c847851119bcda9ab1391c42f75d9024ec59df51 Mon Sep 17 00:00:00 2001 From: laurejablonski Date: Fri, 16 May 2025 21:46:36 +0200 Subject: [PATCH] fix: answer controller gebruikt juiste link --- frontend/src/controllers/answers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/controllers/answers.ts b/frontend/src/controllers/answers.ts index 57407b19..bdfb5e4f 100644 --- a/frontend/src/controllers/answers.ts +++ b/frontend/src/controllers/answers.ts @@ -17,7 +17,7 @@ export class AnswerController extends BaseController { constructor(questionId: QuestionId) { super( - `learningObject/${questionId.learningObjectIdentifier.hruid}/:${questionId.learningObjectIdentifier.version}/questions/${questionId.sequenceNumber}/answers`, + `learningObject/${questionId.learningObjectIdentifier.hruid}/${questionId.learningObjectIdentifier.version}/questions/${questionId.sequenceNumber}/answers`, ); this.loId = questionId.learningObjectIdentifier; this.sequenceNumber = questionId.sequenceNumber;