From 1edffd8e24614bc2f53d331d825f10e2b2f39837 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Fri, 12 Apr 2024 08:39:28 -0500 Subject: [PATCH] added encoding for inverted Signed-off-by: Matt Bruce --- .../Molecules/TopNotification/NotificationMoleculeModel.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/MVMCoreUI/Atomic/Molecules/TopNotification/NotificationMoleculeModel.swift b/MVMCoreUI/Atomic/Molecules/TopNotification/NotificationMoleculeModel.swift index 7fac6d43..0fc5d5d5 100644 --- a/MVMCoreUI/Atomic/Molecules/TopNotification/NotificationMoleculeModel.swift +++ b/MVMCoreUI/Atomic/Molecules/TopNotification/NotificationMoleculeModel.swift @@ -109,6 +109,7 @@ open class NotificationMoleculeModel: MoleculeModelProtocol { try container.encodeIfPresent(button, forKey: .button) try container.encodeIfPresent(secondaryButton, forKey: .secondaryButton) try container.encodeIfPresent(closeButton, forKey: .closeButton) + try container.encodeIfPresent(inverted, forKey: .inverted) try container.encode(style, forKey: .style) } }