diff --git a/CHANGELOG.md b/CHANGELOG.md index c589df6..b1eff1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## Version 1.8.3 + +* **Bug Fixes** + + Fix the email and name characters count labels layout. + + ## Version 1.8.2 * **Bug Fixes** diff --git a/Desk360.podspec b/Desk360.podspec index c286342..a2a337a 100644 --- a/Desk360.podspec +++ b/Desk360.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Desk360" - s.version = "1.8.2" + s.version = "1.8.3" s.summary = "Desk360 iOS SDK" s.description = <<-DESC Desk360 iOS SDK [WIP] diff --git a/Sources/Scenes/CreateRequest/CreateRequestView.swift b/Sources/Scenes/CreateRequest/CreateRequestView.swift index 390859e..82f38c1 100644 --- a/Sources/Scenes/CreateRequest/CreateRequestView.swift +++ b/Sources/Scenes/CreateRequest/CreateRequestView.swift @@ -271,8 +271,8 @@ final class CreateRequestView: UIView, Layoutable, Loadingable { } nameFieldLimit.snp.makeConstraints { make in - make.bottom.equalTo(nameTextField.snp.bottom).offset(8) - make.trailing.equalTo(nameTextField.snp.trailing)// .offset(8) + make.bottom.equalTo(nameTextField.snp.bottom).offset(-6) + make.trailing.equalTo(nameTextField.snp.trailing).offset(-6) } emailTextField.snp.makeConstraints { make in @@ -280,8 +280,8 @@ final class CreateRequestView: UIView, Layoutable, Loadingable { } emailFieldLimit.snp.makeConstraints { make in - make.bottom.equalTo(emailTextField.snp.bottom).offset(8) - make.trailing.equalTo(emailTextField.snp.trailing)// .offset(8) + make.bottom.equalTo(emailTextField.snp.bottom).offset(-6) + make.trailing.equalTo(emailTextField.snp.trailing).offset(-6) } dropDownListView.snp.makeConstraints { make in