diff --git a/pipeline_manager/frontend/src/custom/Editor.vue b/pipeline_manager/frontend/src/custom/Editor.vue index 914e4ef5..115893eb 100644 --- a/pipeline_manager/frontend/src/custom/Editor.vue +++ b/pipeline_manager/frontend/src/custom/Editor.vue @@ -1,5 +1,5 @@ @@ -39,7 +39,7 @@ Hovered connections are calculated and rendered with an appropriate `isHighlight @@ -130,7 +130,6 @@ export default defineComponent({ const panZoom = usePanZoom(); const temporaryConnection = useTemporaryConnection(); const editorManager = EditorManager.getEditorManagerInstance(); - const specificationLoaded = computed(() => editorManager.specificationLoaded); const highlightConnections = ref([]); const highlightInterfaces = ref([]); @@ -812,7 +811,6 @@ export default defineComponent({ visibleConnections, visibleNodes, highlightInterfaces, - specificationLoaded, }; }, }); diff --git a/pipeline_manager/frontend/src/custom/nodepalette/PaletteCategory.vue b/pipeline_manager/frontend/src/custom/nodepalette/PaletteCategory.vue index 08a4b7dd..af0fb7c8 100644 --- a/pipeline_manager/frontend/src/custom/nodepalette/PaletteCategory.vue +++ b/pipeline_manager/frontend/src/custom/nodepalette/PaletteCategory.vue @@ -1,5 +1,5 @@ @@ -9,7 +9,7 @@ Component representing single node's type category/subcategory. It groups the nodes of the same subcategory in the block that can be collapsed. --> -