Trim name of client scope before saving (#1635)
This commit is contained in:
parent
8cf59f4120
commit
e53c7744a1
1 changed files with 1 additions and 0 deletions
|
@ -106,6 +106,7 @@ export default function ClientScopeForm() {
|
|||
|
||||
const save = async (clientScopes: ClientScopeDefaultOptionalType) => {
|
||||
try {
|
||||
clientScopes.name = clientScopes.name?.trim();
|
||||
clientScopes.attributes = convertFormValuesToObject(
|
||||
clientScopes.attributes!
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue