diff --git a/TODO.md b/TODO.md index fb9d445..91cd9d3 100644 --- a/TODO.md +++ b/TODO.md @@ -1,5 +1,17 @@ +# todo + +1. choose primary+secondary(ies) in UI +1. host @ Q +1. manual full sync primary->replicas +1. probably need crud wrapper for board access to enable Jira/Odo 1. how to map to-from JIRA? 1. how to map to-from Odo? -1. probably need crud wrapper for board access to enable Jira/Odo -1. manual full sync primary->replicas +1. SSO google/jira +1. assignees +1. auto assign last editor as assignee if none +1. default oneline +1. description panel + +# done + 1. multi: read from CACHE, write to PRIMARY+CACHE, replicate to REPLICAS diff --git a/nullboard.html b/nullboard.html index 86185ae..5d60399 100644 --- a/nullboard.html +++ b/nullboard.html @@ -1693,7 +1693,7 @@ */ function Note(text) { - this.text = text; + this.text = text.trim(); this.raw = false; this.min = false; }