Skip to content

Commit

Permalink
fix: long names not being displayed (#1076)
Browse files Browse the repository at this point in the history
* fix: long names not being displayed

* fix: ellipsis
  • Loading branch information
SputNikPlop authored Sep 21, 2023
1 parent 7f17850 commit fe0d1d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/components/channel_search_results.dart
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ class _ChannelSearchResultsWidgetState
title: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(result.displayName),
Text(result.displayName, overflow: TextOverflow.ellipsis),
Text(result.language ?? "??",
style: const TextStyle(
fontSize: 12,
Expand Down

0 comments on commit fe0d1d7

Please sign in to comment.