1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-20 14:54:15 +01:00

(bug) unable to add OIDC scopes without discovery

This commit is contained in:
Sylvain 2023-03-02 17:14:39 +01:00
parent 18447f8371
commit 00583a25ff
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
- Fix a bug: admin events view should default to the list tab
- Fix a bug: event creation form should not allow setting multiple times the same price category
- Fix a bug: MAX_SIZE env varibles should not be quoted (#438)
- Fix a bug: unable to add OIDC scopes without discovery
## v5.7.2 2023 February 24

View File

@ -136,7 +136,7 @@ export const FormMultiSelect = <TFieldValues extends FieldValues, TContext exten
if (creatable) {
Object.assign(selectProps, {
formatCreateLabel,
onCreateOption: inputValue => handleCreate(inputValue, value, rhfOnChange)
onCreateOption: inputValue => handleCreate(inputValue, value || [], rhfOnChange)
});
}