From 13ced6a76afe2b7e6109261a0c9ff5fab222c18b Mon Sep 17 00:00:00 2001 From: Sevan Nerse Date: Mon, 23 Dec 2019 16:37:28 +0300 Subject: [PATCH] Fixing style of description column on transactions page. It should wrap in order to handle long descriptions. --- resources/views/banking/transactions/index.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/banking/transactions/index.blade.php b/resources/views/banking/transactions/index.blade.php index 8fefee1d9..bfe0e72dc 100644 --- a/resources/views/banking/transactions/index.blade.php +++ b/resources/views/banking/transactions/index.blade.php @@ -45,7 +45,7 @@ {{ $item->account->name }} {{ trans_choice('general.' . Str::plural($item->type), 1) }} {{ $item->category->name }} - {{ $item->description }} + {{ $item->description }} @php $id = !empty($item->document_id) ? $item->document_id : $item->id;