web/admin: fix error when creating SAML Provider from metadata

closes #4315

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2022-12-31 12:54:42 +01:00
parent 780b986be8
commit a03a64b35c
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ export class SAMLProviderImportForm extends Form<SAMLProvider> {
return html`${flow.name}`;
}}
.value=${(flow: Flow | undefined): string | undefined => {
return flow?.pk;
return flow?.slug;
}}
>
</ak-search-select>