Skip to content

Commit

Permalink
Remove unused imports from NewRawSignalViewer
Browse files Browse the repository at this point in the history
  • Loading branch information
wssheldon committed Nov 29, 2023
1 parent 7bfda0e commit 33963e6
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<script setup>
import { ref, computed } from "vue"
import * as monaco from "monaco-editor"
import { computed } from "vue"
import MonacoEditor from "@/components/MonacoEditor.vue"
// Define Props
Expand All @@ -11,7 +10,7 @@ const props = defineProps({
},
})
const editor = ref(null)
const raw_str = computed(() => JSON.stringify(props.value.raw, null, "\t") || "[]")
const editorBeforeMount = (monaco) => {
monaco.languages.registerHoverProvider("json", {
Expand Down Expand Up @@ -58,9 +57,6 @@ const editorOptions = {
enabled: false,
},
}
// Computed property for raw_str
const raw_str = computed(() => JSON.stringify(props.value.raw, null, "\t") || "[]")
</script>

<template>
Expand Down

0 comments on commit 33963e6

Please sign in to comment.