2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-28 19:46:46 +00:00

Fix typo in setting name (#4567)

This commit is contained in:
Oliver 2023-04-03 23:40:52 +10:00 committed by GitHub
parent 3018087ea9
commit 4cd1d2eebe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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