Fix linter errors
This commit is contained in:
parent
85d526cbef
commit
e5c1440043
|
|
@ -22,7 +22,6 @@ describe('Project Page', () => {
|
||||||
appearance: 'yellow',
|
appearance: 'yellow',
|
||||||
description: 'I am Groot',
|
description: 'I am Groot',
|
||||||
slug: 'groot',
|
slug: 'groot',
|
||||||
objectives: 'Be Groot\nBe awesome',
|
|
||||||
final: false,
|
final: false,
|
||||||
student: {
|
student: {
|
||||||
firstName: 'Rachel',
|
firstName: 'Rachel',
|
||||||
|
|
@ -49,7 +48,6 @@ describe('Project Page', () => {
|
||||||
appearance: 'red',
|
appearance: 'red',
|
||||||
description: 'I am Groot',
|
description: 'I am Groot',
|
||||||
slug: 'groot',
|
slug: 'groot',
|
||||||
objectives: 'Be Groot\nBe awesome',
|
|
||||||
final: false,
|
final: false,
|
||||||
student: {
|
student: {
|
||||||
firstName: 'Rachel',
|
firstName: 'Rachel',
|
||||||
|
|
|
||||||
|
|
@ -87,12 +87,10 @@ import { graphql } from '@/__generated__';
|
||||||
import highlightSidebar from '@/helpers/highlight-sidebar';
|
import highlightSidebar from '@/helpers/highlight-sidebar';
|
||||||
import { doUpdateHighlight } from '@/graphql/mutations';
|
import { doUpdateHighlight } from '@/graphql/mutations';
|
||||||
import Mark from 'mark.js';
|
import Mark from 'mark.js';
|
||||||
import { useRoute } from 'vue-router';
|
|
||||||
|
|
||||||
export interface Props {
|
export interface Props {
|
||||||
module: ModuleNode;
|
module: ModuleNode;
|
||||||
}
|
}
|
||||||
const route = useRoute();
|
|
||||||
const props = defineProps<Props>();
|
const props = defineProps<Props>();
|
||||||
let selectionHandler: SelectionHandlerType;
|
let selectionHandler: SelectionHandlerType;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue