Merge master

This commit is contained in:
Pieter Vander Vennet 2022-12-08 03:02:17 +01:00
commit 24ed527ff7
65 changed files with 991 additions and 1472 deletions

View file

@ -441,8 +441,8 @@ class ImportInspector extends VariableUiElement {
}
// We only care about the properties here
let props: NoteProperties[] = notes["success"].features.map((f) => f.properties)
if(userDetails["uid"]){
props = props.filter(n => n.comments[0].uid === userDetails["uid"])
if (userDetails["uid"]) {
props = props.filter((n) => n.comments[0].uid === userDetails["uid"])
}
const perBatch: NoteState[][] = Array.from(
ImportInspector.SplitNotesIntoBatches(props).values()