Skip to content

Commit 5aa6acc

Browse files
fix(conv): fix merge error
1 parent daa6f2b commit 5aa6acc

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

recoco/frontend/src/js/components/FeatureConversations/Conversations.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ Alpine.data('Conversations', (projectId, currentUserId) => ({
7474
this.countElementsInDiscussion();
7575
this.extractSharedContents().then(async () => {
7676
this.loadExternalFiles();
77+
this.loadPrivateFiles();
7778
await this.detectOpenActionsFromHash();
7879
});
7980
window.addEventListener('hashchange', async () => {
@@ -151,6 +152,7 @@ Alpine.data('Conversations', (projectId, currentUserId) => ({
151152
try {
152153
const privateFiles = JSON.parse(privateFilesElement.textContent);
153154
this.$store.sharedContentsPanel.setPrivateFiles(privateFiles || []);
155+
154156
this.countOf.documents += privateFiles.length;
155157
} catch (error) {
156158
console.error('Failed to parse private files:', error);

0 commit comments

Comments
 (0)