fix statusTag being non-nil on active projects.
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-02-27 19:23:24 +01:00
parent 16237a89a4
commit e7be563407
4 changed files with 18 additions and 1 deletions
+1 -1
View File
@@ -53,7 +53,7 @@
stuffLogClient.createProject({
active: statusTag === "",
endTime: ( endTime == "" ) ? null : new Date(endTime),
statusTag: statusTag || null,
statusTag: statusTag !== "" ? statusTag : null,
name, description, icon, favorite,
}).then(() => {