Skip to content

Commit

Permalink
Fix missing constraints edit history layout issues (IOS-2)
Browse files Browse the repository at this point in the history
  • Loading branch information
kimar committed Feb 20, 2023
1 parent ec1d4d5 commit 133836d
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ class StatusEditHistoryTableViewCell: UITableViewCell {
grayBackground.bottomAnchor.constraint(equalTo: contentView.bottomAnchor, constant: -Self.verticalMargin),

statusHistoryView.topAnchor.constraint(equalTo: grayBackground.topAnchor, constant: Self.verticalMargin),
statusHistoryView.leadingAnchor.constraint(equalTo: grayBackground.leadingAnchor),
statusHistoryView.trailingAnchor.constraint(equalTo: grayBackground.trailingAnchor),
statusViewBottomConstraint,
].compactMap { $0 }

Expand Down

0 comments on commit 133836d

Please sign in to comment.