2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-29 08:01:35 +00:00

Ignore MissingRate errors ()

* Improved permission checking for data importing

- Permission checks on the imported model type

* Improved validation for DateField

* Ignore MissingRate errors

- Do not send these to sentry
This commit is contained in:
Oliver
2024-11-03 18:23:34 +11:00
committed by GitHub
parent abad36786f
commit c9079d9a0e
2 changed files with 3 additions and 1 deletions
src
backend
InvenTree
InvenTree
frontend
src
components
forms

@@ -62,7 +62,7 @@ export default function DateField({
ref={field.ref}
type={undefined}
error={error?.message}
value={dateValue}
value={dateValue ?? null}
clearable={!definition.required}
onChange={onChange}
valueFormat={valueFormat}