fix: devices list accepts ips as single strings / various ui changes
This commit is contained in:
@@ -31,11 +31,11 @@ class DeviceTiers(str, Enum):
|
||||
class DeviceNetworkSettings(BaseModel):
|
||||
hostname: str = ""
|
||||
useStaticIP: bool = False
|
||||
ipAddress: List[str] = []
|
||||
gateway: List[str] = []
|
||||
subnet: List[str] = []
|
||||
dns1: List[str] = []
|
||||
dns2: List[str] = []
|
||||
ipAddress: Any = []
|
||||
gateway: Any = []
|
||||
subnet: Any = []
|
||||
dns1: Any = []
|
||||
dns2: Any = []
|
||||
|
||||
|
||||
class DeviceClockSettings(BaseModel):
|
||||
|
||||
Reference in New Issue
Block a user