From 52844cd5e155922cace5a74fa6e6fb813cf697a1 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Thu, 13 Jan 2022 11:35:24 -0600 Subject: [PATCH] fixed to add readOnly Signed-off-by: Matt Bruce --- MVMCoreUI/Atomic/Organisms/Carousel/CarouselModel.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MVMCoreUI/Atomic/Organisms/Carousel/CarouselModel.swift b/MVMCoreUI/Atomic/Organisms/Carousel/CarouselModel.swift index ed22696c..857984cf 100644 --- a/MVMCoreUI/Atomic/Organisms/Carousel/CarouselModel.swift +++ b/MVMCoreUI/Atomic/Organisms/Carousel/CarouselModel.swift @@ -155,7 +155,7 @@ import UIKit try container.encode(selectable, forKey: .selectable) try container.encode(selectedIndex, forKey: .selectedIndex) try container.encode(enabled, forKey: .enabled) - try container.encode(enabled, forKey: .enabled) + try container.encode(readOnly, forKey: .readOnly) } }