From 081a2a50b82c0e526781df6c39061ebdf5b541dd Mon Sep 17 00:00:00 2001 From: "Pfeil, Scott Robert" Date: Mon, 29 Mar 2021 15:13:32 -0400 Subject: [PATCH] Make label model subclassaable --- MVMCoreUI/Atomic/Atoms/Views/Label/LabelModel.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MVMCoreUI/Atomic/Atoms/Views/Label/LabelModel.swift b/MVMCoreUI/Atomic/Atoms/Views/Label/LabelModel.swift index 6b120d0c..d38a90fd 100644 --- a/MVMCoreUI/Atomic/Atoms/Views/Label/LabelModel.swift +++ b/MVMCoreUI/Atomic/Atoms/Views/Label/LabelModel.swift @@ -12,7 +12,7 @@ // MARK: - Properties //-------------------------------------------------- - public static var identifier: String = "label" + public class var identifier: String { "label" } public var backgroundColor: Color? public var text: String public var accessibilityText: String?