mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-01-05 19:21:23 -06:00
[client] Fix name wrap in DnD
This commit is contained in:
@@ -172,7 +172,12 @@ class ResourceDraggable extends StatelessWidget {
|
||||
height: 48,
|
||||
child: ListTile(
|
||||
leading: resource.getIcon(),
|
||||
title: Text(resource.name),
|
||||
title: Text(
|
||||
resource.name,
|
||||
softWrap: false,
|
||||
maxLines: 1,
|
||||
overflow: TextOverflow.fade,
|
||||
),
|
||||
trailing: count == 1 ? null : Badge(label: Text(count.toString(), style: const TextStyle(fontSize: 14))),
|
||||
),
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user