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.
1 parent ffd4bdb commit 85ed56eCopy full SHA for 85ed56e
web/src/pages/reference/ID_Lists/Vehicles.astro
@@ -321,7 +321,9 @@ const vehicles = {
321
{
322
Object.entries(subcategories).map(([subcategory, vehiclesList]) => (
323
<div class="vehicle-subcategory" id={subcategory}>
324
- <h4 class="vehicle-subcategory-title">{subcategory === 'Uncategorized' ? '' : subcategory}</h4>
+ {subcategory !== 'Uncategorized' && (
325
+ <h4 class="vehicle-subcategory-title">{subcategory}</h4>
326
+ )}
327
<div class="vehicle-list">
328
{vehiclesList.map(vehicle => (
329
<div class="vehicle-item" id={vehicle.name}>
0 commit comments