Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/component/src/locale/lang/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default {
packages_component_classification_addChildernNode: 'Add Child Category',
packages_component_classification_nodeName: 'Please enter classification',
packages_component_classification_deteleMessage:
'This operation will remove all subclasses currently present in this category. Are you sure you want to proceed with the deletion?',
'This operation will remove all sub-categories currently present in this category. Are you sure you want to proceed with the deletion?',
packages_component_formBuilder_file_placeholder: 'Please select a file',
packages_component_formBuilder_file_button: 'Select',
packages_component_src_discoveryclassification_qingshurumulu: 'Please enter a directory description',
Expand Down
13 changes: 2 additions & 11 deletions packages/ldp/src/Dashboard.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="swim-lane flex flex-column h-100">
<div class="swim-lane flex flex-column h-100 position-relative">
<div class="page-header-title bg-white box-card flex align-center position-relative">
<span>{{ $t('page_title_data_hub') }}</span>
<ElTooltip
Expand Down Expand Up @@ -213,16 +213,7 @@ export default {

mounted() {
this.$nextTick(() => {
this.jsPlumbIns.connect({
source: this.$refs.source[0].$el,
target: this.$refs.source[0].$el,
endpoint: 'Dot',
connector: ['Bezier'],
anchor: ['Left', 'Right'],
endpointStyle: { fill: 'white', radius: 0 }
})
this.jsPlumbIns.reset()

this.jsPlumbIns.setContainer(this.$el)
window.addEventListener('keydown', this.handleListenerEsc)
})
},
Expand Down