[M] Rename unread-entry to assignment-entry
This commit is contained in:
+1
-1
@@ -4,7 +4,7 @@ import moment from 'moment';
|
|||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
})
|
})
|
||||||
export default class UnreadEntry extends Vue
|
export default class AssignmentEntry extends Vue
|
||||||
{
|
{
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
@Prop({required: true}) assignment: Assignment;
|
@Prop({required: true}) assignment: Assignment;
|
||||||
+2
-2
@@ -27,5 +27,5 @@
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script src="./unread-entry.ts" lang="ts"></script>
|
<script src="./assignment-entry.ts" lang="ts"></script>
|
||||||
<style src="./unread-entry.scss" lang="scss" scoped></style>
|
<style src="./assignment-entry.scss" lang="scss" scoped></style>
|
||||||
@@ -2,11 +2,11 @@ import {Component, Prop, Vue} from 'vue-property-decorator';
|
|||||||
import App, {Assignment, Course} from '@/components/app/app';
|
import App, {Assignment, Course} from '@/components/app/app';
|
||||||
import {GPAUtils} from '@/utils/gpa-utils';
|
import {GPAUtils} from '@/utils/gpa-utils';
|
||||||
import Constants from '@/constants';
|
import Constants from '@/constants';
|
||||||
import UnreadEntry from '@/pages/overall/overall-course/unread-entry/unread-entry';
|
import AssignmentEntry from '@/pages/overall/overall-course/assignment-entry/assignment-entry';
|
||||||
import CourseHead from '@/pages/overall/overall-course/course-head/course-head.vue';
|
import CourseHead from '@/pages/overall/overall-course/course-head/course-head.vue';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
components: {UnreadEntry, CourseHead}
|
components: {UnreadEntry: AssignmentEntry, CourseHead}
|
||||||
})
|
})
|
||||||
export default class OverallCourse extends Vue
|
export default class OverallCourse extends Vue
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user