Skip to content

Commit 3739721

Browse files
committed
Remove CurrentPathBreadcrumb from RdfContextTab
1 parent db8aec0 commit 3739721

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

meta_configurator/src/components/panels/rdf/rdf-authoring/RdfContextTab.vue

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<script setup lang="ts">
2-
import CurrentPathBreadcrumb from '@/components/panels/shared-components/CurrentPathBreadcrump.vue';
32
import PropertiesPanel from '@/components/panels/gui-editor/PropertiesPanel.vue';
43
import type {Path} from '@/utility/path';
54
import {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-
3631
function 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"

0 commit comments

Comments
 (0)