File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed
meta_configurator/src/components/panels/rdf/rdf-authoring Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change 11<script setup lang="ts">
2- import CurrentPathBreadcrumb from ' @/components/panels/shared-components/CurrentPathBreadcrump.vue' ;
32import PropertiesPanel from ' @/components/panels/gui-editor/PropertiesPanel.vue' ;
43import type {Path } from ' @/utility/path' ;
54import {computed , ref , watch } from ' vue' ;
@@ -29,10 +28,6 @@ const parsingErrors = computed(() => {
2928 }));
3029});
3130
32- function updatePath(newPath : Path ) {
33- session .updateCurrentPath (newPath );
34- }
35-
3631function updateData(path : Path , newValue : any ) {
3732 data .setDataAt (path , newValue );
3833}
@@ -69,11 +64,6 @@ watch(
6964 {'disabled-wrapper': !dataIsInJsonLd || dataIsUnparsable || parsingErrors.length > 0},
7065 ]" >
7166 <div v-if =" dataIsInJsonLd && !dataIsUnparsable" >
72- <CurrentPathBreadcrumb
73- :session-mode =" props.sessionMode"
74- :root-name =" 'document root'"
75- :path =" session.currentPath.value"
76- @update:path =" newPath => updatePath(newPath)" />
7767 <div class =" flex-grow overflow-y-scroll" >
7868 <PropertiesPanel
7969 :currentSchema =" currentSchema"
You can’t perform that action at this time.
0 commit comments