refactor(editor): Delete unused code (no-changelog) (#9866)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-06-26 11:45:41 +02:00
committed by GitHub
parent 405e8746c9
commit 803895360c
35 changed files with 16 additions and 258 deletions

View File

@@ -180,7 +180,6 @@ import { storeToRefs } from 'pinia';
const emit = defineEmits([
'saveKeyboardShortcut',
'valueChanged',
'nodeTypeSelected',
'switchSelectedNode',
'openConnectionNodeCreator',
'redrawNode',
@@ -419,8 +418,6 @@ const canLinkRuns = computed(
const linked = computed(() => isLinkingEnabled.value && canLinkRuns.value);
const inputPanelMargin = computed(() => (isTriggerNode.value ? 0 : 80));
const featureRequestUrl = computed(() => {
if (!activeNodeType.value) {
return '';
@@ -595,10 +592,6 @@ const valueChanged = (parameterData: IUpdateInformation) => {
emit('valueChanged', parameterData);
};
const nodeTypeSelected = (nodeTypeName: string) => {
emit('nodeTypeSelected', nodeTypeName);
};
const onSwitchSelectedNode = (nodeTypeName: string) => {
emit('switchSelectedNode', nodeTypeName);
};