Fix typo in method name, fix conflicted doctests

This commit is contained in:
Pieter Vander Vennet 2022-06-20 11:26:55 +02:00
parent 00026768f2
commit 5bafbbd3d2
4 changed files with 4 additions and 12 deletions

View file

@ -112,7 +112,7 @@ class MassAction extends Combine {
predicate: p => p.status === "open",
action: async p => {
const txt = textField.GetValue().data
state.osmConnection.addCommentToNode(p.id, txt)
state.osmConnection.addCommentToNote(p.id, txt)
}
},
shown: "Add comment to every open note"