mirror of
https://github.com/meshtastic/web.git
synced 2026-01-28 01:12:31 -05:00
Fix max length for wifi credentials
This commit is contained in:
@@ -3,10 +3,10 @@ import { Length } from "class-validator";
|
||||
import type { Protobuf } from "@meshtastic/meshtasticjs";
|
||||
|
||||
export class WiFiValidation implements Protobuf.Config_WiFiConfig {
|
||||
@Length(1, 30)
|
||||
@Length(1, 33)
|
||||
ssid: string;
|
||||
|
||||
@Length(8, 16)
|
||||
@Length(8, 64)
|
||||
psk: string;
|
||||
|
||||
apMode: boolean;
|
||||
|
||||
Reference in New Issue
Block a user