diff --git a/WooCommerce/Classes/ViewRelated/Orders/OrderDetails/OrderDetailsViewController.swift b/WooCommerce/Classes/ViewRelated/Orders/OrderDetails/OrderDetailsViewController.swift index 92d632b1e4e..300df779796 100644 --- a/WooCommerce/Classes/ViewRelated/Orders/OrderDetails/OrderDetailsViewController.swift +++ b/WooCommerce/Classes/ViewRelated/Orders/OrderDetails/OrderDetailsViewController.swift @@ -79,6 +79,8 @@ private extension OrderDetailsViewController { /// Setup: TableView /// func configureTableView() { + view.backgroundColor = StyleManager.tableViewBackgroundColor + tableView.backgroundColor = StyleManager.tableViewBackgroundColor tableView.estimatedSectionHeaderHeight = Constants.sectionHeight tableView.estimatedSectionFooterHeight = Constants.rowHeight tableView.estimatedRowHeight = Constants.rowHeight diff --git a/WooCommerce/Classes/ViewRelated/Orders/OrdersViewController.swift b/WooCommerce/Classes/ViewRelated/Orders/OrdersViewController.swift index a534e7af89d..28c8e7b90a1 100644 --- a/WooCommerce/Classes/ViewRelated/Orders/OrdersViewController.swift +++ b/WooCommerce/Classes/ViewRelated/Orders/OrdersViewController.swift @@ -90,6 +90,8 @@ private extension OrdersViewController { } func configureTableView() { + view.backgroundColor = StyleManager.tableViewBackgroundColor + tableView.backgroundColor = StyleManager.tableViewBackgroundColor tableView.estimatedRowHeight = Constants.estimatedRowHeight tableView.rowHeight = UITableViewAutomaticDimension tableView.refreshControl = refreshControl