Skip to content
Snippets Groups Projects
Commit 599c6cf2 authored by robinwilliam.hundt's avatar robinwilliam.hundt Committed by Dominik Seeger
Browse files

FeedbackTable says 'All Feedback' for reviewers

parent 5982fa92
Branches
Tags
1 merge request!165Resolve "Introducing a labelling system for tutors to mark certain submission"
<template>
<v-card>
<v-card-title class="title">
Your feedback history
<span v-if="isTutor">Your</span><span>All</span>&nbsp;feedback history
<v-spacer/>
<v-text-field
append-icon="search"
......@@ -48,6 +48,7 @@ import { FeedbackTable as FeedbackModule, FeedbackHistoryItem } from '@/store/mo
import { Subscription, Feedback } from '@/models'
import { actions } from '@/store/actions'
import { getters } from '@/store/getters'
import { Authentication } from '../../store/modules/authentication';
@Component({
components: {
......@@ -61,6 +62,7 @@ export default class FeedbackTable extends Vue {
get useRegex () { return OptionsModule.state.useRegex }
get filterByTutors () { return OptionsModule.state.filterByTutors }
get filterByStage () { return OptionsModule.state.filterByStage }
get isTutor () { return Authentication.isTutor }
get stageFilterString () { return OptionsModule.stageFilterString }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment