+
+ ${ptTr(LOC_PROSODY_FIREWALL_CONFIGURATION)}
+
+
+ ${ptTr(LOC_PROSODY_FIREWALL_CONFIGURATION_HELP, true)}
+
+
+
+ ${
+ el.firewallConfiguration?.enabled
+ ? ''
+ : html`
${ptTr(LOC_PROSODY_FIREWALL_DISABLED_WARNING, true)}
`
+ }
+
+
+
`
+}
diff --git a/client/common/configuration/elements/channel-configuration.ts b/client/common/configuration/elements/channel-configuration.ts
index 7e6edd66..01c5f812 100644
--- a/client/common/configuration/elements/channel-configuration.ts
+++ b/client/common/configuration/elements/channel-configuration.ts
@@ -32,7 +32,7 @@ export class ChannelConfigurationElement extends LivechatElement {
public validationError?: ValidationError
@state()
- public actionDisabled: boolean = false
+ public actionDisabled = false
private _asyncTaskRender: Task
@@ -113,7 +113,7 @@ export class ChannelConfigurationElement extends LivechatElement {
}
}
- public readonly getInputValidationClass = (propertyName: string): { [key: string]: boolean } => {
+ public readonly getInputValidationClass = (propertyName: string): Record