feat: handle setting of default context menu state variable only in app.vue
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
ci/woodpecker/pr/build-and-publish Pipeline was successful

This commit is contained in:
SauceyRed 2025-08-11 00:04:18 +02:00
parent ce57b8e7db
commit f1eda2da75
Signed by: sauceyred
GPG key ID: 2BF92EB6D8A5CCA7
3 changed files with 3 additions and 7 deletions

View file

@ -76,7 +76,7 @@ const route = useRoute();
const props = defineProps<MessageProps>();
const contextMenu = useState<ContextMenuInterface>("contextMenu", () => ({ show: false, pointerX: 0, pointerY: 0, items: [] }));
const contextMenu = useState<ContextMenuInterface>("contextMenu");
const messageElement = ref<HTMLDivElement>();