From 0c31fd8c9d99a3f385c1388b086162e5f025b03b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Sun, 10 Jan 2021 21:39:32 +0300 Subject: [PATCH] fixed default_key --- app/Abstracts/View/Components/DocumentShow.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Abstracts/View/Components/DocumentShow.php b/app/Abstracts/View/Components/DocumentShow.php index 783d670d6..8da7e2dd0 100644 --- a/app/Abstracts/View/Components/DocumentShow.php +++ b/app/Abstracts/View/Components/DocumentShow.php @@ -1148,10 +1148,10 @@ abstract class DocumentShow extends Base case 'bill': case 'expense': case 'purchase': - $textTimelineSentStatusReceived = 'mark_received'; + $default_key = 'mark_received'; break; default: - $textTimelineSentStatusReceived = 'mark_sent'; + $default_key = 'mark_sent'; break; }