Fix topmenu dropdown rendering, Recognise POINTs in Address Type

This commit is contained in:
Deon George 2024-04-14 16:52:47 +10:00
parent bb42f418e0
commit 42cc50512f
2 changed files with 3 additions and 3 deletions

View File

@ -293,6 +293,8 @@ class Address extends Model
return 'NODE';
case self::NODE_POINT:
return 'POINT';
case self::NODE_PVT:
return 'PRIVATE';
default:
return '?';
}

View File

@ -63,14 +63,12 @@ ol {
color: white;
}
/* Stop dropdown menu animation */
/*
/* Stop dropdown menu animation - also fixes collapsing transition layout */
.collapsing {
-webkit-transition: none;
transition: none;
display: none;
}
*/
/* dropdown menu fixes */
#nav-menu div.collapse.navbar-collapse.show ul {