Skip to content

Commit

Permalink
chore: swap the data column position
Browse files Browse the repository at this point in the history
  • Loading branch information
stamenione committed Jun 25, 2024
1 parent b7d1076 commit ba87ad8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ class _IdentityMessagesTableState extends State<IdentityMessagesTable> {
if (widget.type == 'Outgoing') DataColumn2(label: Text(context.l10n.recipients), size: ColumnSize.L),
if (widget.type == 'Incoming') DataColumn2(label: Text(context.l10n.senderAddress)),
if (widget.type == 'Incoming') DataColumn2(label: Text(context.l10n.senderDevice), size: ColumnSize.S),
DataColumn2(label: Text(context.l10n.sendDate), size: ColumnSize.S),
DataColumn2(label: Text(context.l10n.numberOfAttachments)),
DataColumn2(label: Text(context.l10n.sendDate), size: ColumnSize.S),
],
),
),
Expand Down

0 comments on commit ba87ad8

Please sign in to comment.