From f3dcef4690c3fee40e9e16ec9565c691cd1d3db4 Mon Sep 17 00:00:00 2001 From: Ivan Smolin Date: Sat, 20 Feb 2021 00:12:58 +0300 Subject: [PATCH] fix: creation of bottomSeparator for BaseSeparatorCell --- TIUIElements/Sources/Separators/BaseSeparatorCell.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TIUIElements/Sources/Separators/BaseSeparatorCell.swift b/TIUIElements/Sources/Separators/BaseSeparatorCell.swift index fe07b3f5..c426a46c 100644 --- a/TIUIElements/Sources/Separators/BaseSeparatorCell.swift +++ b/TIUIElements/Sources/Separators/BaseSeparatorCell.swift @@ -24,7 +24,7 @@ import UIKit open class BaseSeparatorCell: BaseInitializableCell, SeparatorConfigurable { private lazy var topSeparatorView = createTopSeparator() - private lazy var bottomSeparatorView = UIView() + private lazy var bottomSeparatorView = createBottomSeparator() private var topViewLeftConstraint: NSLayoutConstraint? private var topViewRightConstraint: NSLayoutConstraint?