File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
lib/content_management/view Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,13 @@ class _TopicsDataSource extends DataTableSource {
149
149
}
150
150
},
151
151
cells: [
152
- DataCell (Text (topic.name)),
152
+ DataCell (
153
+ Text (
154
+ topic.name,
155
+ maxLines: 2 ,
156
+ overflow: TextOverflow .ellipsis,
157
+ ),
158
+ ),
153
159
DataCell (Text (topic.status.l10n (context))),
154
160
DataCell (
155
161
Text (
@@ -172,7 +178,7 @@ class _TopicsDataSource extends DataTableSource {
172
178
),
173
179
IconButton (
174
180
icon: const Icon (Icons .archive),
175
- tooltip: 'Archive' , // todo (you): Will be fixed in l10n phase.
181
+ tooltip: 'Archive' , // TODO (you): Will be fixed in l10n phase.
176
182
onPressed: () {
177
183
// Dispatch delete event
178
184
context.read <ContentManagementBloc >().add (
You can’t perform that action at this time.
0 commit comments