We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bbd341a + 2c6340c commit 6a05397Copy full SHA for 6a05397
WooCommerce/Classes/ViewRelated/Orders/OrdersSplitViewWrapperController.swift
@@ -34,7 +34,10 @@ final class OrdersSplitViewWrapperController: UIViewController {
34
return
35
}
36
37
- presentDetails(for: Int64(orderID), siteID: Int64(siteID), note: note)
+ // workaround - delay to ensure the transition to the secondary column works after switching stores
38
+ DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) { [self] in
39
+ presentDetails(for: Int64(orderID), siteID: Int64(siteID), note: note)
40
+ }
41
42
43
func presentDetails(for orderID: Int64, siteID: Int64, note: Note? = nil) {
0 commit comments