web/admin: use flow slug as main name for flow dropdown
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
c46b2d5573
commit
6a44695c48
|
@ -60,10 +60,10 @@ export class TypeOAuthCodeApplicationWizardPage extends WizardFormPage {
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
|
|
@ -95,10 +95,10 @@ export class OAuth2ProviderFormPage extends ModelForm<OAuth2Provider, number> {
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
|
|
@ -311,10 +311,10 @@ export class ProxyProviderFormPage extends ModelForm<ProxyProvider, number> {
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
|
|
@ -87,10 +87,10 @@ export class SAMLProviderFormPage extends ModelForm<SAMLProvider, number> {
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
|
|
@ -60,10 +60,10 @@ export class SAMLProviderImportForm extends Form<SAMLProvider> {
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
|
|
@ -417,10 +417,10 @@ export class OAuthSourceForm extends ModelForm<OAuthSource, string> {
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
@ -463,10 +463,10 @@ export class OAuthSourceForm extends ModelForm<OAuthSource, string> {
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
|
|
@ -346,10 +346,10 @@ export class PlexSourceForm extends ModelForm<PlexSource, string> {
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
@ -392,10 +392,10 @@ export class PlexSourceForm extends ModelForm<PlexSource, string> {
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
|
|
@ -496,10 +496,10 @@ export class SAMLSourceForm extends ModelForm<SAMLSource, string> {
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
@ -540,10 +540,10 @@ export class SAMLSourceForm extends ModelForm<SAMLSource, string> {
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
@ -586,10 +586,10 @@ export class SAMLSourceForm extends ModelForm<SAMLSource, string> {
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
|
|
@ -146,10 +146,10 @@ export class AuthenticatorDuoStageForm extends ModelForm<AuthenticatorDuoStage,
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
|
|
@ -10,7 +10,6 @@ import { t } from "@lingui/macro";
|
||||||
import { TemplateResult, html } from "lit";
|
import { TemplateResult, html } from "lit";
|
||||||
import { customElement, property } from "lit/decorators.js";
|
import { customElement, property } from "lit/decorators.js";
|
||||||
import { ifDefined } from "lit/directives/if-defined.js";
|
import { ifDefined } from "lit/directives/if-defined.js";
|
||||||
import { until } from "lit/directives/until.js";
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
AuthTypeEnum,
|
AuthTypeEnum,
|
||||||
|
@ -286,10 +285,10 @@ export class AuthenticatorSMSStageForm extends ModelForm<AuthenticatorSMSStage,
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
|
|
@ -93,10 +93,10 @@ export class AuthenticatorStaticStageForm extends ModelForm<AuthenticatorStaticS
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
|
|
@ -98,10 +98,10 @@ export class AuthenticatorTOTPStageForm extends ModelForm<AuthenticatorTOTPStage
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
|
|
@ -172,10 +172,10 @@ export class AuthenticateWebAuthnStageForm extends ModelForm<AuthenticateWebAuth
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
|
|
@ -247,10 +247,10 @@ export class IdentificationStageForm extends ModelForm<IdentificationStage, stri
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
@ -281,10 +281,10 @@ export class IdentificationStageForm extends ModelForm<IdentificationStage, stri
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
@ -315,10 +315,10 @@ export class IdentificationStageForm extends ModelForm<IdentificationStage, stri
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
|
|
@ -88,10 +88,10 @@ export class InvitationForm extends ModelForm<Invitation, string> {
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
|
|
@ -136,10 +136,10 @@ export class PasswordStageForm extends ModelForm<PasswordStage, string> {
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
|
|
@ -160,10 +160,10 @@ export class TenantForm extends ModelForm<Tenant, string> {
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
@ -197,10 +197,10 @@ export class TenantForm extends ModelForm<Tenant, string> {
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
@ -232,10 +232,10 @@ export class TenantForm extends ModelForm<Tenant, string> {
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
@ -269,10 +269,10 @@ export class TenantForm extends ModelForm<Tenant, string> {
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
@ -307,10 +307,10 @@ export class TenantForm extends ModelForm<Tenant, string> {
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
@ -342,10 +342,10 @@ export class TenantForm extends ModelForm<Tenant, string> {
|
||||||
return flows.results;
|
return flows.results;
|
||||||
}}
|
}}
|
||||||
.renderElement=${(flow: Flow): string => {
|
.renderElement=${(flow: Flow): string => {
|
||||||
return flow.name;
|
return flow.slug;
|
||||||
}}
|
}}
|
||||||
.renderDescription=${(flow: Flow): TemplateResult => {
|
.renderDescription=${(flow: Flow): TemplateResult => {
|
||||||
return html`${flow.slug}`;
|
return html`${flow.name}`;
|
||||||
}}
|
}}
|
||||||
.value=${(flow: Flow | undefined): string | undefined => {
|
.value=${(flow: Flow | undefined): string | undefined => {
|
||||||
return flow?.pk;
|
return flow?.pk;
|
||||||
|
|
Reference in New Issue