From bbe8a979457397897e08bee96ff7ad9767aae413 Mon Sep 17 00:00:00 2001 From: koziolek Date: Sat, 2 Sep 2017 20:30:55 +0200 Subject: [PATCH] Fix reseting action type when editing rule firefly-iii/firefly-iii#799 --- app/Http/Controllers/RuleController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/RuleController.php b/app/Http/Controllers/RuleController.php index 46e1d3f8ed..d3c64d1d82 100644 --- a/app/Http/Controllers/RuleController.php +++ b/app/Http/Controllers/RuleController.php @@ -523,7 +523,7 @@ class RuleController extends Controller $actions[] = view( 'rules.partials.action', [ - 'oldTrigger' => $entry->action_type, + 'oldAction' => $entry->action_type, 'oldValue' => $entry->action_value, 'oldChecked' => $entry->stop_processing, 'count' => $count,