From 9157be50478cc1cddb27e60fa6eaff510777aab0 Mon Sep 17 00:00:00 2001 From: Scott Pfeil Date: Fri, 14 Jan 2022 14:00:44 -0500 Subject: [PATCH] form read only build fix --- MVMCoreUI/FormUIHelpers/FormFieldProtocol.swift | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/MVMCoreUI/FormUIHelpers/FormFieldProtocol.swift b/MVMCoreUI/FormUIHelpers/FormFieldProtocol.swift index 0a501440..2c95f942 100644 --- a/MVMCoreUI/FormUIHelpers/FormFieldProtocol.swift +++ b/MVMCoreUI/FormUIHelpers/FormFieldProtocol.swift @@ -25,9 +25,7 @@ public protocol FormFieldProtocol: FormItemProtocol { } -extension FormFieldProtocol { +public extension FormFieldProtocol { var baseValue: AnyHashable? { nil } - - var readOnly: Bool { false } }