fix input style of whitelisting for mobile

This commit is contained in:
grummbeer 2023-03-04 22:45:19 +01:00
parent de359a731b
commit 2c88e492e2

View File

@ -180,7 +180,7 @@ void changeWhiteList({Function()? callback}) async {
child: TextField(
maxLines: null,
decoration: InputDecoration(
border: const OutlineInputBorder(),
border: isDesktop ? const OutlineInputBorder() : null,
errorText: msg.isEmpty ? null : translate(msg),
),
controller: controller,