1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 15:59:41 +02:00

feat(docker/networks): migrate networks datatable to React [EE-4670] (#10351)

Co-authored-by: LP B <xAt0mZ@users.noreply.github.com>
This commit is contained in:
Chaim Lev-Ari 2023-10-22 11:35:22 +02:00 committed by GitHub
parent 0dc1805881
commit b933bee95e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 333 additions and 440 deletions

View file

@ -10,9 +10,7 @@ import {
ResourceObject,
} from 'docker-types/generated/1.41';
type WithRequiredProperty<Type, Key extends keyof Type> = Type & {
[Property in Key]-?: Type[Property];
};
import { WithRequiredProperty } from '@/types';
export class NodeViewModel {
Model: Node;