mirror of
https://github.com/tale/headplane.git
synced 2026-08-21 18:26:38 +00:00
chore: fix tiny nits
This commit is contained in:
@@ -105,8 +105,7 @@ export default function Page() {
|
|||||||
<>
|
<>
|
||||||
<h1 className="text-2xl font-medium mb-1.5">Users</h1>
|
<h1 className="text-2xl font-medium mb-1.5">Users</h1>
|
||||||
<p className="mb-8 text-md">
|
<p className="mb-8 text-md">
|
||||||
Manage the users in your network and their permissions. Tip: You can
|
Manage the users in your network and their permissions.
|
||||||
drag machines between users to change ownership.
|
|
||||||
</p>
|
</p>
|
||||||
<ManageBanner oidc={data.oidc} isDisabled={!data.writable} />
|
<ManageBanner oidc={data.oidc} isDisabled={!data.writable} />
|
||||||
<table className="table-auto w-full rounded-lg">
|
<table className="table-auto w-full rounded-lg">
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import type { PreAuthKey } from './PreAuthKey';
|
||||||
import type { User } from './User';
|
import type { User } from './User';
|
||||||
|
|
||||||
export interface Machine {
|
export interface Machine {
|
||||||
@@ -12,7 +13,7 @@ export interface Machine {
|
|||||||
lastSeen: string;
|
lastSeen: string;
|
||||||
expiry: string | null;
|
expiry: string | null;
|
||||||
|
|
||||||
preAuthKey?: unknown; // TODO
|
preAuthKey?: PreAuthKey;
|
||||||
|
|
||||||
createdAt: string;
|
createdAt: string;
|
||||||
registerMethod:
|
registerMethod:
|
||||||
|
|||||||
Reference in New Issue
Block a user