diff --git a/inception/inception-brat-editor/src/main/ts/src/annotator_ui/AnnotationResizeHandle.svelte b/inception/inception-brat-editor/src/main/ts/src/annotator_ui/AnnotationResizeHandle.svelte index 1845b98c3c1..1fe2c1f1fe6 100644 --- a/inception/inception-brat-editor/src/main/ts/src/annotator_ui/AnnotationResizeHandle.svelte +++ b/inception/inception-brat-editor/src/main/ts/src/annotator_ui/AnnotationResizeHandle.svelte @@ -22,7 +22,7 @@ import { createEventDispatcher, onMount } from 'svelte' import { closestChunk } from '../visualizer/Visualizer' - export let highlight: Element + export let highlight: Element = undefined export let position: 'begin' | 'end' export let handle: Element export let marker: Element diff --git a/inception/inception-diam-editor/src/main/ts/src/Utils.ts b/inception/inception-diam-editor/src/main/ts/src/Utils.ts index 7959396a1ff..2abc79406c6 100644 --- a/inception/inception-diam-editor/src/main/ts/src/Utils.ts +++ b/inception/inception-diam-editor/src/main/ts/src/Utils.ts @@ -31,7 +31,6 @@ export function uniqueLabels (data: AnnotatedText): string[] { } } - console.log(sortedLabels) return sortedLabels }