Make dockerfile and fix multitag filter

This commit is contained in:
bel
2019-12-07 14:26:44 -07:00
parent 8728b7d694
commit 72169206f8
4 changed files with 28 additions and 1 deletions

View File

@@ -103,7 +103,7 @@ func (t *Task) MarshalJSON() ([]byte, error) {
"noteText": strings.Join(t.Note, "\n"),
"ow": 0,
"tags": strings.Join([]string(t.Tags), ", "),
"tags_ids": strings.Join([]string(tagsIds), ", "),
"tags_ids": strings.Join([]string(tagsIds), ","),
"duedate": t.Due.Format(fullFormat),
"dueClass": "",
"dueStr": t.Due.Format(shortFormat),