From 8f32f37f6938f3e5f7aadf7a178f3937afa9ec36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Wed, 7 Jul 2021 18:33:14 +0300 Subject: [PATCH] fixed revenue/payment show page console issue #nfbv7z --- app/View/Components/Transactions/Script.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/View/Components/Transactions/Script.php b/app/View/Components/Transactions/Script.php index c78ede332..6600ae669 100644 --- a/app/View/Components/Transactions/Script.php +++ b/app/View/Components/Transactions/Script.php @@ -25,7 +25,7 @@ class Script extends Component public function __construct(string $type = '', string $scriptFile = '', string $version = '', $transaction = false) { $this->type = $type; - $this->scriptFile = ($scriptFile) ? $scriptFile : 'public/js/common/documents.js'; + $this->scriptFile = ($scriptFile) ? $scriptFile : 'public/js/banking/transactions.js'; $this->version = $this->getVersion($version); $this->transaction = $transaction; }