diff --git a/assets/css/selectpicker_extensions.css b/assets/css/selectpicker_extensions.css
index 925ab592..cda2278e 100644
--- a/assets/css/selectpicker_extensions.css
+++ b/assets/css/selectpicker_extensions.css
@@ -11,4 +11,12 @@
}
.dropdown-item .picker-hs {
display: inherit;
-}
\ No newline at end of file
+}
+
+/** Bootstrap-select Unhide on selected element */
+.picker-us {
+ display: inherit;
+}
+.dropdown-item .picker-us {
+ display: none;
+}
diff --git a/src/Form/Type/StructuralEntityType.php b/src/Form/Type/StructuralEntityType.php
index 7ef5f8ed..c2d3d163 100644
--- a/src/Form/Type/StructuralEntityType.php
+++ b/src/Form/Type/StructuralEntityType.php
@@ -253,7 +253,7 @@ class StructuralEntityType extends AbstractType
$html .= $this->getElementNameWithLevelWhitespace($choice, $options, '');
if ($options['show_fullpath_in_subtext'] && null !== $choice->getParent()) {
- $html .= ' ' . trim(htmlspecialchars($choice->getParent()->getFullPath())) . '';
+ $html .= ' ' . trim(htmlspecialchars($choice->getParent()->getFullPath())) . '';
}
if ($choice instanceof AttachmentType && !empty($choice->getFiletypeFilter())) {