diff --git a/MVMCoreUI/Atomic/Atoms/Views/Label/Label.swift b/MVMCoreUI/Atomic/Atoms/Views/Label/Label.swift index 9e5881a4..ec94149b 100644 --- a/MVMCoreUI/Atomic/Atoms/Views/Label/Label.swift +++ b/MVMCoreUI/Atomic/Atoms/Views/Label/Label.swift @@ -757,8 +757,10 @@ public typealias ActionBlock = () -> () extension Label { public func reset() { - text = nil + //Weird issue. when cell reuse. text style is not getting reset.Fix for:CXTDT-344190 + //We need to reset the attribute text first and then text. Its working fine attributedText = nil + text = nil hero = nil textAlignment = .left originalAttributedString = nil