Update server name display to conditionally include an icon indicator for better visual context.

This commit is contained in:
headlessdev 2025-04-19 16:18:44 +02:00
parent 7986737e0e
commit ceb10a2ffe

View File

@ -965,7 +965,7 @@ export default function Dashboard() {
size={24} size={24}
/> />
)} )}
<div className="text-base font-extrabold">{hostedVM.name}</div> <div className="text-base font-extrabold">{hostedVM.icon && "・ "}{hostedVM.name}</div>
</div> </div>
<div className="flex items-center gap-2 text-foreground/80"> <div className="flex items-center gap-2 text-foreground/80">
<Button <Button