From 70f5311d4e3c4cace5a5553192e36a4e82c2cceb Mon Sep 17 00:00:00 2001 From: Bel LaPointe Date: Sun, 28 Feb 2021 02:25:04 -0600 Subject: [PATCH] todos, QoL --- TODO.md | 16 ++++++++++++++-- nullboard.html | 2 +- 2 files changed, 15 insertions(+), 3 deletions(-) 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; }