feat(editor): Add support for changing sticky notes color in new canvas (no-changelog) (#10593)

This commit is contained in:
Alex Grozav
2024-08-29 13:07:39 +03:00
committed by GitHub
parent 821ca16a57
commit c988931898
11 changed files with 340 additions and 17 deletions

View File

@@ -63,6 +63,8 @@ export function useCanvasNode() {
const render = computed(() => data.value.render);
const eventBus = computed(() => node?.eventBus.value);
return {
node,
id,
@@ -84,5 +86,6 @@ export function useCanvasNode() {
executionWaiting,
executionRunning,
render,
eventBus,
};
}