Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
feat: Message list split in to two columns
Browse files Browse the repository at this point in the history
  • Loading branch information
wadedvsa committed Jan 30, 2024
1 parent 5587404 commit 733a931
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion module/Olcs/src/Table/Tables/messages.table.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
declare(strict_types=1);

use Common\Service\Table\Formatter\ExternalConversationLink;
use Common\Service\Table\Formatter\ExternalConversationStatus;

return [
'variables' => [
Expand All @@ -25,8 +26,14 @@
'attributes' => [],
'columns' => [
[
'name' => 'id',
'title' => 'Subject',
'name' => 'id',
'formatter' => ExternalConversationLink::class,
],
[
'title' => 'Status',
'name' => 'status',
'formatter' => ExternalConversationStatus::class,
],
],
];

0 comments on commit 733a931

Please sign in to comment.