Skip to content

Commit bae90a7

Browse files
authored
fix: print to pdf freezes the 3 dots menu - MEED-10290 - Meeds-io/meeds#4074 (#1645)
Before this change, when go to notesA and open 3 dots menu and click on print to pdf then open again the same menu, the menu becomes unusable. after this change, the menu should display the actions list.
1 parent acab379 commit bae90a7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

notes-webapp/src/main/webapp/vue-app/notes/components/NotesOverview.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
</div>
4848
</v-col>
4949
<v-col
50+
id="note-actions-menu"
5051
xl="2"
5152
lg="2"
5253
md="3"
@@ -1029,7 +1030,7 @@ export default {
10291030
console.error('Error when exporting note: ', e);
10301031
});
10311032
});
1032-
}, 200);
1033+
}, 400);
10331034
},
10341035
displayMessage(message) {
10351036
this.$root.$emit('alert-message', message?.message, message?.type || 'success');

0 commit comments

Comments
 (0)