From 3320819b3708b4b97fd5c9e307113f6d966446b9 Mon Sep 17 00:00:00 2001 From: Kevin G Christiano Date: Mon, 20 Apr 2020 13:23:37 -0400 Subject: [PATCH] required now works due to changes --- MVMCoreUI/Atomic/Atoms/Views/LeftRightLabelView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MVMCoreUI/Atomic/Atoms/Views/LeftRightLabelView.swift b/MVMCoreUI/Atomic/Atoms/Views/LeftRightLabelView.swift index 1147e013..c26307f2 100644 --- a/MVMCoreUI/Atomic/Atoms/Views/LeftRightLabelView.swift +++ b/MVMCoreUI/Atomic/Atoms/Views/LeftRightLabelView.swift @@ -121,7 +121,7 @@ import Foundation rightTextLabel.topAnchor.constraint(equalTo: topAnchor).isActive = true rightTextLabelTrailing = layoutMarginsGuide.trailingAnchor.constraint(equalTo: rightTextLabel.trailingAnchor) - rightTextLabelTrailing?.priority = UILayoutPriority(rawValue: 999) + rightTextLabelTrailing?.priority = .required rightTextLabelTrailing?.isActive = true let rightTextBottom = bottomAnchor.constraint(equalTo: rightTextLabel.bottomAnchor)