mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-05-22 01:34:25 +00:00
Bug fixes
This commit is contained in:
parent
c150d2ba23
commit
ed0bc65285
3 changed files with 5 additions and 3 deletions
|
@ -92,7 +92,7 @@ class LogsConfigOptions extends StatelessWidget {
|
|||
child: Text(dropdownItemTranslation[item.key]),
|
||||
)).toList(),
|
||||
value: retentionTime,
|
||||
onChanged: (value) => updateRetentionTime(value as double),
|
||||
onChanged: (value) => updateRetentionTime(double.tryParse(value.toString())),
|
||||
decoration: InputDecoration(
|
||||
border: const OutlineInputBorder(
|
||||
borderRadius: BorderRadius.all(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue