diff --git a/gdn-app/src/components/CNote.vue b/gdn-app/src/components/CNote.vue index e5b37c9..f2b6799 100644 --- a/gdn-app/src/components/CNote.vue +++ b/gdn-app/src/components/CNote.vue @@ -5,6 +5,7 @@ import { useUiStore } from "@/stores/ui"; import { RiAddLine, RiArrowDownSLine, + RiArrowRightDoubleLine, RiArrowRightSLine, RiCornerUpRightLine, RiEditLine, @@ -129,6 +130,10 @@ function onCreateEditorFinish(text: string): void { onCreateEditorClose(); } + +function onMoveButtonClick(): void { + ui.anchorId = props.segment.id; +}