Fix error reporting urls and make sure sidebar not showing stale data

This commit is contained in:
Bryan Housel
2019-01-03 11:37:14 -05:00
parent 0256ad7f0d
commit 46ebce2d6f
14 changed files with 72 additions and 75 deletions
+2 -2
View File
@@ -425,9 +425,9 @@ export function uiNoteEditor(context) {
}
noteEditor.note = function(_) {
noteEditor.note = function(val) {
if (!arguments.length) return _note;
_note = _;
_note = val;
return noteEditor;
};