diff --git a/Passepartout/App/iOS/CHANGELOG.md b/Passepartout/App/iOS/CHANGELOG.md index 3fe14042..17097bb4 100644 --- a/Passepartout/App/iOS/CHANGELOG.md +++ b/Passepartout/App/iOS/CHANGELOG.md @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Redundant keychain items. +- Keyboard not dismissed in "Network settings". ## 1.14.0 (2021-01-07) diff --git a/Passepartout/App/iOS/Scenes/NetworkSettingsViewController.swift b/Passepartout/App/iOS/Scenes/NetworkSettingsViewController.swift index fcc35bad..538e0da2 100644 --- a/Passepartout/App/iOS/Scenes/NetworkSettingsViewController.swift +++ b/Passepartout/App/iOS/Scenes/NetworkSettingsViewController.swift @@ -806,6 +806,7 @@ extension NetworkSettingsViewController: FieldTableViewCellDelegate { commitTextField(cell.field) } - func fieldCellDidEnter(_: FieldTableViewCell) { + func fieldCellDidEnter(_ cell: FieldTableViewCell) { + cell.field.resignFirstResponder() } }