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
@@ -49,9 +49,9 @@ export function uiNoteHeader() {
}
noteHeader.note = function(_) {
noteHeader.note = function(val) {
if (!arguments.length) return _note;
_note = _;
_note = val;
return noteHeader;
};