mirror of
https://github.com/tale/headplane.git
synced 2026-08-31 09:18:29 +00:00
chore: merge remote-tracking branch 'origin' into next
This commit is contained in:
@@ -65,7 +65,7 @@ export default function MachineRow({
|
|||||||
{node.givenName}
|
{node.givenName}
|
||||||
</p>
|
</p>
|
||||||
<p className="text-sm opacity-50">
|
<p className="text-sm opacity-50">
|
||||||
{node.user.name ?? node.user.email}
|
{node.user.name || node.user.email}
|
||||||
</p>
|
</p>
|
||||||
<div className="flex gap-1 flex-wrap mt-1.5">
|
<div className="flex gap-1 flex-wrap mt-1.5">
|
||||||
{mapTagsToComponents(node, uiTags)}
|
{mapTagsToComponents(node, uiTags)}
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ export default function Page() {
|
|||||||
</span>
|
</span>
|
||||||
<div className="flex items-center gap-x-2.5 mt-1">
|
<div className="flex items-center gap-x-2.5 mt-1">
|
||||||
<UserCircle />
|
<UserCircle />
|
||||||
{node.user.name ?? node.user.email}
|
{node.user.name || node.user.email}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="p-2 pl-4">
|
<div className="p-2 pl-4">
|
||||||
@@ -253,7 +253,7 @@ export default function Page() {
|
|||||||
className="w-full max-w-full grid grid-cols-1 lg:grid-cols-2 gap-y-2 sm:gap-x-12"
|
className="w-full max-w-full grid grid-cols-1 lg:grid-cols-2 gap-y-2 sm:gap-x-12"
|
||||||
>
|
>
|
||||||
<div className="flex flex-col gap-1">
|
<div className="flex flex-col gap-1">
|
||||||
<Attribute name="Creator" value={node.user.name ?? node.user.email} />
|
<Attribute name="Creator" value={node.user.name || node.user.email} />
|
||||||
<Attribute name="Machine name" value={node.givenName} />
|
<Attribute name="Machine name" value={node.givenName} />
|
||||||
<Attribute
|
<Attribute
|
||||||
tooltip="OS hostname is published by the machine’s operating system and is used as the default name for the machine."
|
tooltip="OS hostname is published by the machine’s operating system and is used as the default name for the machine."
|
||||||
|
|||||||
Reference in New Issue
Block a user