Version update.

This commit is contained in:
James Cole
2019-11-13 06:57:17 +01:00
parent 88f1adf650
commit 8a9e12c2b9
5 changed files with 10 additions and 9 deletions

View File

@@ -104,7 +104,7 @@ class InstallController extends Controller
'firefly-iii:fix-long-descriptions' => [],
// final command to set latest version in DB
'firefly-iii:set-last-version' => ['--james-is-cool' => true],
'firefly-iii:set-latest-version' => ['--james-is-cool' => true],
];
}

View File

@@ -72,7 +72,7 @@ trait UserNavigation
return false;
}
$type = $journal->transactionType->type;
$editable = [TransactionType::WITHDRAWAL, TransactionType::TRANSFER, TransactionType::DEPOSIT];
$editable = [TransactionType::WITHDRAWAL, TransactionType::TRANSFER, TransactionType::DEPOSIT, TransactionType::RECONCILIATION];
return in_array($type, $editable, true);
}