mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix issue with accounts in select map not matching
When mapping Opposing Accounts the select input's values are incorrect and do not match account ids.
This commit is contained in:
parent
9e1586878b
commit
e300c1aab4
@ -57,7 +57,7 @@ class OpposingAccounts implements MapperInterface
|
||||
}
|
||||
$list[$accountId] = $name;
|
||||
}
|
||||
$list = array_merge([0 => trans('import.map_do_not_map')], $list);
|
||||
$list = ["0" => trans('import.map_do_not_map')] + $list;
|
||||
|
||||
return $list;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user