File tree Expand file tree Collapse file tree 3 files changed +5
-14
lines changed
lib/content_management/view Expand file tree Collapse file tree 3 files changed +5
-14
lines changed Original file line number Diff line number Diff line change @@ -74,17 +74,15 @@ class _HeadlinesPageState extends State<HeadlinesPage> {
74
74
),
75
75
DataColumn2 (
76
76
label: Text (l10n.sourceName),
77
- size: ColumnSize .M ,
77
+ size: ColumnSize .S ,
78
78
),
79
- DataColumn2 (label: Text (l10n.status), size: ColumnSize .S ),
80
79
DataColumn2 (
81
80
label: Text (l10n.lastUpdated),
82
- size: ColumnSize .M ,
81
+ size: ColumnSize .S ,
83
82
),
84
83
DataColumn2 (
85
84
label: Text (l10n.actions),
86
85
size: ColumnSize .S ,
87
- fixedWidth: 120 ,
88
86
),
89
87
],
90
88
source: _HeadlinesDataSource (
@@ -164,7 +162,6 @@ class _HeadlinesDataSource extends DataTableSource {
164
162
),
165
163
),
166
164
DataCell (Text (headline.source.name)),
167
- DataCell (Text (headline.status.l10n (context))),
168
165
DataCell (
169
166
Text (
170
167
DateFormat ('dd-MM-yyyy' ).format (headline.updatedAt.toLocal ()),
Original file line number Diff line number Diff line change @@ -75,17 +75,15 @@ class _SourcesPageState extends State<SourcesPage> {
75
75
),
76
76
DataColumn2 (
77
77
label: Text (l10n.sourceType),
78
- size: ColumnSize .M ,
78
+ size: ColumnSize .S ,
79
79
),
80
- DataColumn2 (label: Text (l10n.status), size: ColumnSize .S ),
81
80
DataColumn2 (
82
81
label: Text (l10n.lastUpdated),
83
- size: ColumnSize .M ,
82
+ size: ColumnSize .S ,
84
83
),
85
84
DataColumn2 (
86
85
label: Text (l10n.actions),
87
86
size: ColumnSize .S ,
88
- fixedWidth: 120 ,
89
87
),
90
88
],
91
89
source: _SourcesDataSource (
@@ -165,7 +163,6 @@ class _SourcesDataSource extends DataTableSource {
165
163
),
166
164
),
167
165
DataCell (Text (source.sourceType.localizedName (l10n))),
168
- DataCell (Text (source.status.l10n (context))),
169
166
DataCell (
170
167
Text (
171
168
// TODO(fulleni): Make date format configurable by admin.
Original file line number Diff line number Diff line change @@ -72,15 +72,13 @@ class _TopicPageState extends State<TopicPage> {
72
72
label: Text (l10n.topicName),
73
73
size: ColumnSize .L ,
74
74
),
75
- DataColumn2 (label: Text (l10n.status), size: ColumnSize .S ),
76
75
DataColumn2 (
77
76
label: Text (l10n.lastUpdated),
78
- size: ColumnSize .M ,
77
+ size: ColumnSize .S ,
79
78
),
80
79
DataColumn2 (
81
80
label: Text (l10n.actions),
82
81
size: ColumnSize .S ,
83
- fixedWidth: 120 ,
84
82
),
85
83
],
86
84
source: _TopicsDataSource (
@@ -158,7 +156,6 @@ class _TopicsDataSource extends DataTableSource {
158
156
overflow: TextOverflow .ellipsis,
159
157
),
160
158
),
161
- DataCell (Text (topic.status.l10n (context))),
162
159
DataCell (
163
160
Text (
164
161
// TODO(fulleni): Make date format configurable by admin.
You can’t perform that action at this time.
0 commit comments