fix handling of note objects in NoteSimple and NoteSub

This commit is contained in:
bunnybeam 2025-06-19 19:56:44 +01:00
parent 1a14424be8
commit 487cfed5f3
No known key found for this signature in database
4 changed files with 22 additions and 20 deletions

View file

@ -40,10 +40,10 @@ const props = defineProps<{
let showContent = ref(prefer.s.uncollapseCW);
const mergedCW = computed(() => computeMergedCw(props.note));
const note = ref(deepClone(props.note));
const mergedCW = computed(() => computeMergedCw(note.value));
setupNoteViewInterruptors(note, null);
watch(() => props.expandAllCws, (expandAllCws) => {