diff -r c7c34916027a -r 177826044cd9 wp/wp-includes/customize/class-wp-customize-nav-menu-location-control.php
--- a/wp/wp-includes/customize/class-wp-customize-nav-menu-location-control.php Mon Oct 14 18:06:33 2019 +0200
+++ b/wp/wp-includes/customize/class-wp-customize-nav-menu-location-control.php Mon Oct 14 18:28:13 2019 +0200
@@ -56,6 +56,13 @@
if ( empty( $this->choices ) ) {
return;
}
+
+ $value_hidden_class = $no_value_hidden_class = '';
+ if ( $this->value() ) {
+ $value_hidden_class = ' hidden';
+ } else {
+ $no_value_hidden_class = ' hidden';
+ }
?>
-
-
+
+