Remove unused query
This commit is contained in:
parent
e34bae1734
commit
8f2e2ccb7d
|
|
@ -7,7 +7,6 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {mapGetters, mapActions} from 'vuex';
|
import {mapGetters, mapActions} from 'vuex';
|
||||||
import ASSIGNMENTS_QUERY from '@/graphql/gql/assignmentsQuery.gql';
|
|
||||||
import MODULE_DETAILS_QUERY from '@/graphql/gql/moduleDetailsQuery.gql';
|
import MODULE_DETAILS_QUERY from '@/graphql/gql/moduleDetailsQuery.gql';
|
||||||
|
|
||||||
import SCROLL_POSITION from '@/graphql/gql/local/scrollPosition.gql';
|
import SCROLL_POSITION from '@/graphql/gql/local/scrollPosition.gql';
|
||||||
|
|
@ -22,8 +21,7 @@
|
||||||
|
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
module: {},
|
module: {}
|
||||||
assignments: []
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -49,11 +47,6 @@
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
assignments() {
|
|
||||||
return {
|
|
||||||
query: ASSIGNMENTS_QUERY
|
|
||||||
};
|
|
||||||
},
|
|
||||||
scrollPosition: {
|
scrollPosition: {
|
||||||
query: SCROLL_POSITION
|
query: SCROLL_POSITION
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue