2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 04:25:42 +00:00

Allow settings value to be nullified (#8596)

* Allow settings value to be nullified

* Additional null check

* Bump API version

* Fix for unit test
This commit is contained in:
Oliver
2024-11-30 15:30:28 +11:00
committed by GitHub
parent 327884ca26
commit 3149ae79ce
3 changed files with 28 additions and 4 deletions

View File

@ -68,6 +68,7 @@ export function SettingList({
fields: {
value: {
field_type: fieldType,
required: setting?.required ?? false,
label: setting?.name,
description: setting?.description,
api_url: setting?.api_url ?? '',