#88 - edit comment fonctional but not styled

This commit is contained in:
isUnknown 2025-01-07 15:19:50 +01:00
parent ea2817244b
commit 6cc8325d2b
5 changed files with 102 additions and 23 deletions

View file

@ -6,6 +6,7 @@ export const useDialogStore = defineStore("dialog", () => {
const content = ref(null);
const openedFile = ref(null);
const activeTracks = ref(null);
const isEditCommentMode = ref(false);
const comments = computed(() => {
if (activeTracks.value?.length > 0) {
@ -143,5 +144,6 @@ export const useDialogStore = defineStore("dialog", () => {
isCommentsOpen,
isCommentPanelEnabled,
updateFile,
isEditCommentMode,
};
});