fix: Fixed issue where Conflicts view is shown but the list is empty

This commit is contained in:
Aman Harwara
2023-06-29 17:54:38 +05:30
parent efe069db06
commit 69de0e448f
3 changed files with 7 additions and 3 deletions

View File

@@ -278,7 +278,7 @@ export abstract class Collection<
this.typedMap[element.content_type] = array
}
public numberOfItemsWithConflicts(): number {
return this.conflictMap.directMapSize
public uuidsOfItemsWithConflicts(): string[] {
return this.conflictMap.getAllDirectKeys()
}
}