#88 - fix edit comment system

This commit is contained in:
isUnknown 2025-01-07 16:05:10 +01:00
parent dd6eff2904
commit 12562ed8da
3 changed files with 10 additions and 11 deletions

View file

@ -6,7 +6,6 @@ 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) {
@ -144,6 +143,5 @@ export const useDialogStore = defineStore("dialog", () => {
isCommentsOpen,
isCommentPanelEnabled,
updateFile,
isEditCommentMode,
};
});