web: prettier having opinions after merging with dependent branch

This commit is contained in:
Ken Sternberg 2023-12-04 10:32:16 -08:00
parent 03fde51313
commit fc80596432
2 changed files with 3 additions and 4 deletions

View File

@ -110,8 +110,7 @@ export class RelatedUserAdd extends Form<{ users: number[] }> {
} }
@customElement("ak-user-related-list") @customElement("ak-user-related-list")
export class RelatedUserList extends WithTenantConfig( export class RelatedUserList extends WithTenantConfig(WithCapabilitiesConfig(Table<User>)) {
WithCapabilitiesConfig(Table<User>)) {
expandable = true; expandable = true;
checkbox = true; checkbox = true;

View File

@ -86,7 +86,7 @@ export class RadiusProviderFormPage extends WithTenantConfig(ModelForm<RadiusPro
</label> </label>
<p class="pf-c-form__helper-text"> <p class="pf-c-form__helper-text">
${msg( ${msg(
"When enabled, code-based multi-factor authentication can be used by appending a semicolon and the TOTP code to the password. This should only be enabled if all users that will bind to this provider have a TOTP device configured, as otherwise a password may incorrectly be rejected if it contains a semicolon." "When enabled, code-based multi-factor authentication can be used by appending a semicolon and the TOTP code to the password. This should only be enabled if all users that will bind to this provider have a TOTP device configured, as otherwise a password may incorrectly be rejected if it contains a semicolon.",
)} )}
</p> </p>
</ak-form-element-horizontal> </ak-form-element-horizontal>
@ -103,7 +103,7 @@ export class RadiusProviderFormPage extends WithTenantConfig(ModelForm<RadiusPro
type="text" type="text"
value="${first( value="${first(
this.instance?.sharedSecret, this.instance?.sharedSecret,
randomString(128, ascii_letters + digits) randomString(128, ascii_letters + digits),
)}" )}"
class="pf-c-form-control" class="pf-c-form-control"
required required