From 485d7b2dd3a467c6a36e5931fbfa4ea120e11608 Mon Sep 17 00:00:00 2001 From: thomasmountford Date: Tue, 30 Aug 2022 12:02:43 +0200 Subject: [PATCH] Updated UpdatableEdgeExample to still have a label on the updatable edge --- examples/vite/src/UpdatableEdge/UpdatableEdgeExample.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/vite/src/UpdatableEdge/UpdatableEdgeExample.vue b/examples/vite/src/UpdatableEdge/UpdatableEdgeExample.vue index 46791530..57738df8 100644 --- a/examples/vite/src/UpdatableEdge/UpdatableEdgeExample.vue +++ b/examples/vite/src/UpdatableEdge/UpdatableEdgeExample.vue @@ -20,7 +20,7 @@ const initialElements: Elements = [ position: { x: 400, y: 100 }, style: { background: '#D6D5E6', color: '#333', border: '1px solid #222138', width: 180 }, }, - { id: 'e1-2', source: '1', target: '2', updatable: 'target' }, + { id: 'e1-2', source: '1', target: '2', label: 'Updatable target', updatable: 'target' }, ] const elements = ref(initialElements)