web/admin: fix LDAP Provider bind flow list being empty
closes #1192 Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
75ff2480e2
commit
9c0f7e0018
|
@ -54,7 +54,7 @@ export class LDAPProviderFormPage extends ModelForm<LDAPProvider, number> {
|
||||||
name="authorizationFlow">
|
name="authorizationFlow">
|
||||||
<select class="pf-c-form-control">
|
<select class="pf-c-form-control">
|
||||||
${until(tenant().then(t => {
|
${until(tenant().then(t => {
|
||||||
new FlowsApi(DEFAULT_CONFIG).flowsInstancesList({
|
return new FlowsApi(DEFAULT_CONFIG).flowsInstancesList({
|
||||||
ordering: "pk",
|
ordering: "pk",
|
||||||
designation: FlowsInstancesListDesignationEnum.Authentication,
|
designation: FlowsInstancesListDesignationEnum.Authentication,
|
||||||
}).then(flows => {
|
}).then(flows => {
|
||||||
|
|
Reference in New Issue