1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-28 06:16:39 +07:00

fixed lab node creation bug

This commit is contained in:
Fedor Katurov 2021-09-22 10:07:14 +07:00
parent b7aae5eccd
commit e2a69b2b2e
3 changed files with 17 additions and 8 deletions

View file

@ -25,7 +25,7 @@ export type GetLabNodesRequest = {
export interface ILabNode {
node: INode;
last_seen: string | null;
last_seen: string | null | undefined;
comment_count: number;
}