From 2de6783bf08a889cfb7e8384b0f289611be37e8a Mon Sep 17 00:00:00 2001 From: Kyle Matthew Hedden Date: Wed, 29 Jun 2022 16:38:32 -0400 Subject: [PATCH] Fix models that missed refactor. --- MVMCoreUI/Atomic/Atoms/Buttons/Link/LinkModel.swift | 2 +- MVMCoreUI/Atomic/Atoms/Views/Label/LabelModel.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MVMCoreUI/Atomic/Atoms/Buttons/Link/LinkModel.swift b/MVMCoreUI/Atomic/Atoms/Buttons/Link/LinkModel.swift index 40f2e406..38bcb491 100644 --- a/MVMCoreUI/Atomic/Atoms/Buttons/Link/LinkModel.swift +++ b/MVMCoreUI/Atomic/Atoms/Buttons/Link/LinkModel.swift @@ -32,7 +32,7 @@ open class LinkModel: ButtonModelProtocol, MoleculeModelProtocol, EnableableMode public var inverted = false public var size:linkFontSize = linkFontSize.small - public var shouldMaskRecordedView: Bool = false + public var shouldMaskRecordedView: Bool? = false //-------------------------------------------------- // MARK: - Initializer diff --git a/MVMCoreUI/Atomic/Atoms/Views/Label/LabelModel.swift b/MVMCoreUI/Atomic/Atoms/Views/Label/LabelModel.swift index de5c3980..40740194 100644 --- a/MVMCoreUI/Atomic/Atoms/Views/Label/LabelModel.swift +++ b/MVMCoreUI/Atomic/Atoms/Views/Label/LabelModel.swift @@ -26,7 +26,7 @@ public var hero: Int? public var makeWholeViewClickable: Bool? public var numberOfLines: Int? - public var shouldMaskRecordedView: Bool = false + public var shouldMaskRecordedView: Bool? = false //-------------------------------------------------- // MARK: - Keys