Commit 9e065a116d8124de0cdc1656f835ad0fc5cd2e54
1 parent
327607e8
UI: Added support for UTF-8 characters in MQTT credential Client ID
Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -59,7 +59,7 @@ export class DeviceCredentialsMqttBasicComponent implements ControlValueAccessor |
59 | 59 | |
60 | 60 | constructor(public fb: FormBuilder) { |
61 | 61 | this.deviceCredentialsMqttFormGroup = this.fb.group({ |
62 | - clientId: [null, [Validators.pattern(/^[A-Za-z0-9]+$/)]], | |
62 | + clientId: [null], | |
63 | 63 | userName: [null], |
64 | 64 | password: [null] |
65 | 65 | }, {validators: this.atLeastOne(Validators.required, ['clientId', 'userName'])}); | ... | ... |