mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 02:26:58 +00: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:
@@ -57,7 +57,7 @@ class OpposingAccounts implements MapperInterface
|
|||||||
}
|
}
|
||||||
$list[$accountId] = $name;
|
$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;
|
return $list;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user