From 7f7edb1ab6ba211933a564c5acd8e2e1bbf28151 Mon Sep 17 00:00:00 2001 From: "Pfeil, Scott Robert" Date: Mon, 15 Jun 2020 11:12:02 -0400 Subject: [PATCH] change ordering --- .../RightVariable/ListRightVariableButtonAllTextAndLinks.swift | 2 +- .../ListRightVariableTextLinkAllTextAndLinks.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/RightVariable/ListRightVariableButtonAllTextAndLinks.swift b/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/RightVariable/ListRightVariableButtonAllTextAndLinks.swift index 9c590b0c..f0d5cdbf 100644 --- a/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/RightVariable/ListRightVariableButtonAllTextAndLinks.swift +++ b/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/RightVariable/ListRightVariableButtonAllTextAndLinks.swift @@ -100,10 +100,10 @@ import Foundation } else { button.accessibilityLabel = getAccessibilityMessage() } + elements.append(button) if linkShowing { elements.append(eyebrowHeadlineBodyLink.link) } - elements.append(button) accessibilityElements = elements } } diff --git a/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/RightVariable/ListRightVariableTextLinkAllTextAndLinks.swift b/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/RightVariable/ListRightVariableTextLinkAllTextAndLinks.swift index 215eb9f0..2c2f25bc 100644 --- a/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/RightVariable/ListRightVariableTextLinkAllTextAndLinks.swift +++ b/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/RightVariable/ListRightVariableTextLinkAllTextAndLinks.swift @@ -98,10 +98,10 @@ import Foundation } else { link.accessibilityLabel = getAccessibilityMessage() } + elements.append(link) if linkShowing { elements.append(eyebrowHeadlineBodyLink.link) } - elements.append(link) accessibilityElements = elements } }