2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-19 13:35:40 +00:00

Fix typo in setting name ()

This commit is contained in:
Oliver
2023-04-03 23:40:52 +10:00
committed by GitHub
parent 3018087ea9
commit 4cd1d2eebe

@ -26,7 +26,7 @@
* Returns the base currency used for conversion operations
*/
function baseCurrency() {
return global_settings.INVENTREE_BASE_CURRENCY || 'USD';
return global_settings.INVENTREE_DEFAULT_CURRENCY || 'USD';
}