mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-09 23:15:45 -06:00
Merge pull request #1097 from kelvinhammond/patch-1
Fix issue with accounts in select map not matching
This commit is contained in:
commit
ed0e14aee5
@ -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