From 01c7df3c6981c3e536c7d1d7b31028f2790a923c Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Mon, 8 May 2023 10:46:14 -0500 Subject: [PATCH] clearout attributes on a text reset Signed-off-by: Matt Bruce --- VDS/Components/Label/Label.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/VDS/Components/Label/Label.swift b/VDS/Components/Label/Label.swift index f540e8e4..762e9daa 100644 --- a/VDS/Components/Label/Label.swift +++ b/VDS/Components/Label/Label.swift @@ -52,6 +52,7 @@ open class Label: UILabel, Handlerable, ViewProtocol, Resettable, UserInfoable { override open var text: String? { didSet { + attributes = nil didChange() } }