Skip to content
Snippets Groups Projects
Commit f997c41e authored by Elmar Ludwig's avatar Elmar Ludwig
Browse files

avoid :key on template with vue2, fixes #242

parent 8d3a08c4
No related branches found
No related tags found
No related merge requests found
......@@ -27,8 +27,8 @@ const CoursewareTestBlock = {
{{assignment.title}}
</span>
</div>
<template v-for="(exercise, index) in exercises" :key="exercise.id">
<div v-show="index === exercise_pos">
<template v-for="(exercise, index) in exercises">
<div v-show="index === exercise_pos" :key="exercise.id">
<form class="default" autocomplete="off" :exercise="exercise.id">
<fieldset class="cw-exercise-fieldset" v-html="exercise.template" ref="content">
</fieldset>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment