Remove unused prop parameter
This commit is contained in:
parent
c03275dc01
commit
cd3bbf0651
|
|
@ -38,7 +38,12 @@
|
|||
import me from '@/mixins/me';
|
||||
|
||||
export default {
|
||||
props: ['objective', 'schoolClass'],
|
||||
props: {
|
||||
objective: {
|
||||
type: Object,
|
||||
default: null
|
||||
}
|
||||
},
|
||||
|
||||
mixins: [me, editModule],
|
||||
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@
|
|||
<objective
|
||||
:key="objective.id"
|
||||
:objective="objective"
|
||||
:school-class="schoolClass"
|
||||
class="objective-group__objective"
|
||||
v-for="objective in group.objectives"/>
|
||||
</ul>
|
||||
|
|
|
|||
Loading…
Reference in New Issue