From 3b0a453aab27247bdbddae72ca2b1ebbe1fd92c7 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Mon, 8 Aug 2022 10:46:53 -0500 Subject: [PATCH] update for VDS changes Signed-off-by: Matt Bruce --- VDS.xcworkspace/contents.xcworkspacedata | 6 +++--- VDSSample/ViewControllers/CheckboxViewController.swift | 2 +- VDSSample/ViewControllers/RadioButtonViewController.swift | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/VDS.xcworkspace/contents.xcworkspacedata b/VDS.xcworkspace/contents.xcworkspacedata index 46812d6..91951bf 100644 --- a/VDS.xcworkspace/contents.xcworkspacedata +++ b/VDS.xcworkspace/contents.xcworkspacedata @@ -1,10 +1,10 @@ - - + + diff --git a/VDSSample/ViewControllers/CheckboxViewController.swift b/VDSSample/ViewControllers/CheckboxViewController.swift index e78f099..cda044f 100644 --- a/VDSSample/ViewControllers/CheckboxViewController.swift +++ b/VDSSample/ViewControllers/CheckboxViewController.swift @@ -44,7 +44,7 @@ class CheckboxViewController: UIViewController, StoryboardInitable { model.errorText = "Error Text" surfaceLabel.text = model.surface.rawValue - disabledSwitch.isOn = model.on + disabledSwitch.isOn = model.selected labelTextField.text = model.labelText childTextField.text = model.childText showErrorSwitch.isOn = model.showError diff --git a/VDSSample/ViewControllers/RadioButtonViewController.swift b/VDSSample/ViewControllers/RadioButtonViewController.swift index 0dc4666..b6be301 100644 --- a/VDSSample/ViewControllers/RadioButtonViewController.swift +++ b/VDSSample/ViewControllers/RadioButtonViewController.swift @@ -44,7 +44,7 @@ class RadioButtonViewController: UIViewController, StoryboardInitable { model.errorText = "Error Text" surfaceLabel.text = model.surface.rawValue - disabledSwitch.isOn = model.on + disabledSwitch.isOn = model.selected labelTextField.text = model.labelText childTextField.text = model.childText showErrorSwitch.isOn = model.showError