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")
export class RelatedUserList extends WithTenantConfig(
WithCapabilitiesConfig(Table<User>)) {
export class RelatedUserList extends WithTenantConfig(WithCapabilitiesConfig(Table<User>)) {
expandable = true;
checkbox = true;

View File

@ -86,7 +86,7 @@ export class RadiusProviderFormPage extends WithTenantConfig(ModelForm<RadiusPro
</label>
<p class="pf-c-form__helper-text">
${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>
</ak-form-element-horizontal>
@ -103,7 +103,7 @@ export class RadiusProviderFormPage extends WithTenantConfig(ModelForm<RadiusPro
type="text"
value="${first(
this.instance?.sharedSecret,
randomString(128, ascii_letters + digits)
randomString(128, ascii_letters + digits),
)}"
class="pf-c-form-control"
required