1
0
mirror of https://github.com/go-vikunja/app synced 2024-05-29 00:36:49 +00:00

removed task description from tasktile.

This commit is contained in:
Benimautner 2024-02-11 23:01:12 +01:00
parent b0d60e1c12
commit 13b7eb7368

View File

@ -51,9 +51,9 @@ Widget? _buildTaskSubtitle(Task? task, bool showInfo) {
texts.add(TextSpan(text: " !" + priorityToString(task.priority), style: TextStyle(color: Colors.orange))); texts.add(TextSpan(text: " !" + priorityToString(task.priority), style: TextStyle(color: Colors.orange)));
} }
if(texts.isEmpty && task.description.isNotEmpty) { //if(texts.isEmpty && task.description.isNotEmpty) {
return HtmlWidget(task.description); // return HtmlWidget(task.description);
} // }
if(texts.isNotEmpty) { if(texts.isNotEmpty) {
return RichText(text: TextSpan(children: texts)); return RichText(text: TextSpan(children: texts));