1
0
mirror of https://github.com/go-vikunja/app synced 2024-06-02 18:49:47 +00:00

removed substring to avoid identifier being cut

This commit is contained in:
Benimautner 2023-05-10 21:10:34 +02:00
parent 4f6553dd3f
commit 7451836cf1

View File

@ -58,7 +58,7 @@ class _BucketTaskCardState extends State<BucketTaskCard> with AutomaticKeepAlive
children: <Widget>[
Text(
widget.task.identifier.isNotEmpty
? '#${widget.task.identifier.substring(1)}' : '${widget.task.id}',
? '#${widget.task.identifier}' : '${widget.task.id}',
style: (theme.textTheme.subtitle2 ?? TextStyle()).copyWith(
color: Colors.grey,
),